/* Importa a fonte pixel do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

/* Estilo básico da página */
body { 
    font-family: 'Press Start 2P', Arial, sans-serif; /* Mantém Arial para o texto geral */
    margin: 20px; 
    background: linear-gradient(135deg, #000000, rgb(0, 15, 17));
    color: #333;
}

.menu {
    color: grey;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

a {
    color: grey;
    text-decoration: none;

}

h1{
    color: rgb(0, 133, 153);
    text-decoration: none;

}

a:hover {

    color:rgb(240, 253, 255);

}

button { 
    font-family: 'Press Start 2P', Arial, sans-serif; /* Aplica a fonte pixel nos botões */
    margin: 5px; 
    padding: 12px 16px; 
    background-color: transparent; 
    color: grey; 
    border-color:#19adb3;
    border-radius: 6px; 
    cursor: pointer; 
    font-size: 11px; 
    transition: background 0.3s ease;
}

button:hover {

    color:rgb(240, 253, 255);

}

.fim { 
    color: rgb(0, 133, 153);
    text-decoration: none;
}