body {
    font-family: Arial, sans-serif;
    background:  #011e50; /* Degradê azul */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}
.container {
    text-align: center;
}
.button {
    background-color: #4169E1;
    border: none;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: block; /* Faz os botões ficarem um embaixo do outro */
    width: 200px;   /* Define uma largura fixa para os botões */
    margin: 10px auto; /* Centraliza e dá margem entre os botões */
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.button:hover {
    background-color: #010101;
    transform: translateY(-3px);
}
.button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
h2{
    color:floralwhite;
}