body {
    width: 100vw;
    height: 100vh;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.container {
    max-width: 500px;
    width: 100%;
    margin: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.container p {
    margin: 0;
}

.inputOptionContainer {
    display: flex;
    flex-direction: column;
    justify-items: right;
    gap: 1rem;
}

.inputContainer {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
    gap: 0.5rem;
}

.inputContainer label {
    font-size: 16px;
}

.inputContainer input {
    width: 50px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

.textbox {
    width: 100%;
    min-height: 200px;
    max-height: 70vh;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

hr.solid {
    border: 1px solid #ccc;
    border-radius: 1px;
    width: 100%;
}

button.secondary {
    background-color: #6c757d;
}

button.secondary:hover {
    background-color: #5a6268;
}

button:hover {
    background-color: #0056b3;
}

#secret {
    height: 150px;
    padding: 10px;
    background-color: white;
    color: #333;
    border: 1px solid #ccc;
    word-wrap: break-word;
    border-radius: 4px;
    font-size: 16px;
}

button:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}