body {
    font-family: Arial, sans-serif;
    background-color: #282c34; /* Fundo escuro */
    color: #f0f0f0; /* Texto claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

main {
    background-color: #3c414a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

h1, h2 {
    color: #61dafb; /* Cor de destaque */
    margin-bottom: 20px;
}

#historia {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

#opcoes-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.opcao-btn {
    background-color: #61dafb;
    color: #282c34;
    border: none;
    padding: 15px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.1s;
    text-align: left;
}

.opcao-btn:hover {
    background-color: #4cb3d1;
    transform: translateY(-2px);
}

.opcao-btn:active {
    background-color: #388ba3;
    transform: translateY(0);
}