*{
    padding: 0;
    margin: 0;
}

body{
    
    background: linear-gradient(to bottom right, #D4EAFF, #c7c1ff);
    
}
html, body, #app{
    height: 100%;
}

#app{
    display: flex;
    flex-direction: column;
     justify-content: space-between;
}

a{
    color: inherit;
    text-decoration: none;
}

.back{
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #D4EAFF, #c7c1ff);
    z-index: -1;
}

.lightInter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

.cabecalho{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    
}

.logoSpace{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 10px;
}


.logoSpace img:first-child{
    width: 35%;
}

.logoSpace img:last-child{
    width: 60%;
}
.navbar {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin: 5px;
}

.navbar ul{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content:center;
    list-style: none;
}

.navbar li{
    margin-right: 10px;
    font-size: 3vw;
}

h3{
    margin: 20px 30px;
    font-size: 27px;
    font-weight: 100;
    line-height: 1.5;
}

.boldTitle{
    font-weight: 600;
}

.slimTitle{
  font-weight: 300;
}

.gradient{
    color: rgb(152, 42, 255);
    transition: color 0.01s ease;
}

.texto{
    font-weight: 300;
}


.rodape{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 0 40px;

}

.rodape h3{
    margin: 0
}

.rodape li{
    list-style:  none;
    padding-bottom: 20px;

}

.meEncontre{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.texto-centro{
    text-align: center;
}

#comingSoon{
    display: none;
}

@media only screen and (min-width: 600px){
   
    
    h3{
        font-size: 3.3vw;
        
    }

    .navbar li{
        margin-right: 25px;
        font-size: 1.2vw;
    }

    #meEncontre h3{
        font-size: 2.5vw;
        
    }

    #comingSoon{
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0%;
        background-color: #ffffff;
        z-index: 2;

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;

        display: none;

    
    }

    #comingSoonImg{
        width: 50%;
        
    }

    #backBtn{
        width: 20%;
    }

    .rodape
    {
        margin: 60 0px;
    }

}