@import url('https://fonts.googleapis.com/css2? family= Nunito+Sans:wght@200;300;400;600 & display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', serifenlos;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    background-color: orange;
    height: 50vh;
    width: 100%;
}


.logo{
    height: 40vh;
    background: #111;
    border-radius: 0px 0px 150px 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    width: 150px;
    height: 150px;
    border-radius: 75px;
    filter: drop-shadow(2px 4px 6px orange);
}
.logo img::before{
    content: '';
    border: 3px solid #222;
    border-color: #222;
}

.input-box{
    height: 115px;
    width: 100%;
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box{
    display: flex;
    flex-direction: column;
    width: 60%;
    text-align: center;
}

.box div{
    margin-bottom: 10px;
    background-color: #111;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 50px;
}

.info
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.info h1{
    color: #fff;
    font-size: 27px;
    font-weight: normal;
    font-family: 'Nunito Sans', serifenlos;
}



.info img{
    width: 30px;
    position: relative;
    right: 10px;
    color: rgb(255, 255, 255);
}




.box a{
    font-family: sans-serif;
    font-size: 25px;
    color: aliceblue;
    transition: transform .2s;
    font-family: 'Nunito Sans', serifenlos;
}

.info a:hover{
    transform: scale(1.1);
}


@media (max-width: 768px){
    .logo{
        border-radius: 0px 0px 30px 30px;
    }

    .box{
        width: 70%;
    }

    .info a{
        font-size: 20px;
    }

    .info img{
        width: 27px;
        height: 27px;
        right: 5px;
    }
    .box div{
        padding: 15px;
        border-radius: 10px;
    }
    
}

@media (max-width: 425px){
    .logo{
        border-radius: 0px 0px 20px 20px;
    }

    .box{
        width: 85%;
    }

    .info img{
        width: 25px;
        height: 25px;
        right: 7px;
    }

    .info a{
        font-size: 18px;
    }

    .box div{
        padding: 15px;
        border-radius: 10px;
    }
}

