body {
    font-family: 'Lato', sans-serif;
    background: white;
    color: #6d6e72;
    min-height: 100vh; /* Garante que o conteúdo ocupe toda a altura da tela */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
h2 {
    color: #6d6e72;
    text-align: center;
    font-size: 1.6rem;
}
h2 span {
    color: #1e973f;
}

.btnSites{
    background-color: #1e973f;
    color: #fff;
    border: 2px solid #1e973f;
}

.btnSites:hover{
    background-color: #fff;
    color: #1e973f;
    border: 2px solid #1e973f;
}

.linkInfo{
    color: #1e973f;
}

.linkInfo:hover{
    text-decoration: underline;
    color: #1e973f;
}

.rotateStart{
    height: 50px;
}

@media(max-width:768px){

    body {
        padding-left: 1rem;
        padding-right: 1rem;
    }

}