body {
    font-family: 'Rubik', sans-serif;
    background-color: #f0f8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('https://atuarios.preservtec.com.br/background.png');
    background-size: cover;
}

.container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 400px;
    font-size: 20px;
    text-align: center;
    position: relative;
}

.hidden {
    display: none;
}

button {
    margin-top: 20px;
    padding: 15px 30px;
    background-color: #fd5035;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.3s;
}

button:hover {
    background-color: #fd5035;
    transform: scale(1.1);
}

button:disabled {
    background-color: #cccccc;
}

button:hover:enabled {
    background-color: #fd5035;
}

.option-button {
    display: block;
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    background-color: #f8961e;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s, transform 0.3s;
}

.option-button:hover {
    background-color: #43aa8b;
    transform: scale(1.05);
}

h1 {
    font-size: 36px;
    color: #fd5035;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    color: #fd5035;
    font-weight: 500;
}
