body{
    /*overflow: hidden;*/
    margin: 0;
    padding: 0;
}

.container{
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    background: radial-gradient(#ffffff 38%, #ffffff 65%, #f3f3f3 100%);
}

.logo-container {
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-items: center;
    justify-content: center;
}

.logo {
    display: flex;
    width: 90vh;
    height: 90vh;
    /*filter: drop-shadow(1px 1px 1px #00000099);*/
    
}

.frase {
    display: flex;
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    justify-content: center;
    flex-direction: column;
    font-size: 1em;
    font-weight: 600;
    color: #2f4c5f;
    height: 10vh;
    width: 70vw;
}

.frase small{
    font-size: 60%;
    margin-top: 0.5%;
    font-weight: 400;
}


@media only screen and (max-width: 768px) { 
    .logo-container {
        display: flex;
        width: 80vw;
    }

    .frase {
        width: 70vw;
        font-size: 0.8em;
    }

    .logo {
        width: 35vw;
        height: 35vw;
    }
    
}

@media only screen and (max-width: 425px) { 
    .logo-container {
        display: flex;
        width: 80vw;
    }

    .frase {
        width: 70vw;
        font-size: 0.8em;
    }

    .logo {
        width: 70vw;
        height: 70vw;
    }
    
}

@media (orientation: landscape) {
    .logo-container {
        display: flex;
        width: 80vw;
    }

    .logo {
        width: 80vh;
        height: 80vh;
    }
  }
  
  @media (max-width: 1180px) and (orientation: portrait) {
    .logo-container {
        width: 100vw;
    }
    .logo {
        width: 90vw!important;
        height: 90vw;
    }

    .frase small{
        margin-top: 2.5%;
    }
    
}