* {
    margin: 0;
    padding: 0;
    box-sizing: 0;
}

html,
body {
    height: 100% !important;
    font-family: Arial, sans-serif	;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color: #f37817;
}

header{
    align-items: center;
    justify-content: center;
}

img {   
    height: 7rem;
    background-color: white;
    
}

.cabecalho {   
    border: 8px solid #0036a0;
    border-radius: 50%;
    margin-bottom: 10px;
    background-color:white;
    padding: 30px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h1 {
    font-size: 22px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
}

.header{
    gap: 1px;
}

div{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    align-items: center;
}

button {
    background-color: #0036a0;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s;
    border-radius: 15px;
    height: 57px;
    width: 60%;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

button:hover {
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

@media (min-width: 768px) {
    .button-container {
        display: flex;
        justify-content: center;
    
    }
}

/* Estilos para telas menores que 768px (smartphones) */
@media (max-width: 768px) {
    

    .btn {
        padding: 0;
    }

    button {
        width: 90%;
        padding: 15px 30px;
    }
}

    img {
        max-width: 100%; /* Para evitar que a imagem ultrapasse a largura da tela */
    }

    body {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.1));
        box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3); /* Adiciona uma sombra na parte inferior */
    }