/* styles.css */
body {
    background-color: #3a2d5a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    background-color: #5e3b8a; /* Cor de fundo mais suave para o container */
    border-radius: 20px; /* Bordas arredondadas */
    padding: 30px;
    width: 100%;
    max-width: 400px; /* Limita a largura do container */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Sombra suave para destacar */
}

.titulo {
    font-size: 36px;
    color: white;
    margin-bottom: 20px;
}

.botao {
    display: block;
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
    border: none;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color 0.3s;
}

.fase { 
    background-color: #4c8bdb;
    color: white;
}

.sair {
    background-color: #ff4c4c;
    color: white;
}

.botao:hover {
    opacity: 0.8;
}

.botao:active {
    background-color: #3b6a9f;
}
