@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');
*{
    margin: 0;
    padding: 0;
}

body{
    background: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
#content{
    padding: 20px;
}
#content .logo{
    height: 100px;
    margin: auto;
    display: flex;
    align-items: center;
}


#content .logo img{
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

#content .contato{
    margin: 25px auto;
    text-align: center;
}

#content .contato ul{
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

#content .contato ul li a{
    display: block;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 200px;
    transition: 0.3s;
}

#content .contato ul li a.mail:hover{
    background: #7753a5;
}

#content .contato ul li a.insta:hover{
    background: #f6971d;
}

#content .contato ul li a.in:hover{
    background: #29aaac;
}

#content .contato ul li a img{
    margin: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
}

#content .contato p a{
    color: #fff;
    margin: 50px auto 0;
    font-size: 1.6em;
    display: inline-block;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}

@media(max-width: 575px){
    #content .contato p a{
        font-size: 1.3em
    }
    #content .contato ul li a{
        height: 40px;
        width: 40px;
    }
}