/* Configurações */
:root {
    font-size: 62.5%;
}

body{
    margin: 0;
    background-color: #EDEDED;
}

.scroll-animation {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* imagem dos emojis */

.imagem{
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.imagem img{
    width: 130rem;
}

.imagemMobile{
    display: none;
}

/* titulo da pagina */

.titulo{
    display: flex;
    justify-content: center;
}

.titulo h1{
    font-family: "Montserrat", serif;
    font-size: 5rem;
    font-weight: 400;
    white-space: nowrap;
    margin: 0;
    margin-bottom: 5rem;
}

.titulo h1 span{
    margin: 0;
    font-weight: 700;
}

/* sections dos logins */

.logins{
    display: grid;
    justify-content: center;
}

.logins #google{
    width: 70rem;
    height: 6rem;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.167);
    margin-bottom: 2rem;
}

#google a{
    display: flex;
    align-items: center;
    padding: 1rem;
    gap: 4rem;
    text-decoration: none;
}

#google a img{
    width: 4rem;
}

#google a p{
    font-family: "Montserrat", serif;
    font-size: 2rem;
    margin: 0;
    color: black;
}

.logins #visitante{
    width: 70rem;
    height: 6rem;
    background-color: #FFFFFF;
    border-radius: 0.5rem;
    box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.167);
}

#visitante a{
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 4rem;
    text-decoration: none;
}

#visitante a img{
    width: 3rem;
}

#visitante a p{
    font-family: "Montserrat", serif;
    font-size: 2rem;
    margin: 0;
    color: black;
}