* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

#logo-unifan {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1em 0;
}

#imagem-unifan {
    max-width: 200px;
}

header {
    background: linear-gradient(-45deg, #28A573, #04413E, #2FAC68);
    background-size: 500% 500%;
    position: relative;
    animation: change 5s ease-in-out infinite;
    width: 100%;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@keyframes change {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

#titulo {
    padding: 50px;
    overflow: hidden;
}

h1,
h2 {
    color: white;
}

#container {
    background-color: #122A42;
    width: 80vh;
    height: 100%;
    border-radius: 61px 61px 0px 0px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    border-left: 2px solid white;
    text-align: center;
}

#container-text {
    margin-top: 80px;
    padding: 20px;
}

.documentos {
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    background: #02615c;
    border-radius: 25px;
    height: 48px;
    width: 30vh;
    text-align: center;
    cursor: pointer;
    color: white;
    font-weight: bold;
    line-height: 18px;
    border: none;
}

.documentos:hover {
    opacity: 0.8;
}

.documentos:active {
    opacity: 0.6;
}

/* Estilizando a barra de rolagem */
::-webkit-scrollbar {
    width: 8px;
    /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background-color: #F1F1F1;
    /* Cor de fundo da área da barra de rolagem */
}

::-webkit-scrollbar-thumb {
    background-color: #A8A8A8;
    width: 10px;
    /* Cor da barra de rolagem (cinza) */
    border-radius: 4px;
    /* Cantos arredondados da barra de rolagem */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Cor da barra de rolagem ao passar o mouse */
}

footer {
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    color: white;
}

@media (max-width: 1080px) {

    #container {
        width: 80%;
    }

    * {
        overflow: auto;
    }

    header {
        height: 100%;
    }

}

@media screen and (min-height: 932px) {
    header {
        height: 100vh;
    }
}