@import url(https://fonts.googleapis.com/css?family=Roboto&display=swap);
*{
    box-sizing: border-box;
    padding: 0px;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    transition: .2s ease-in-out;
}
html{
    height: 100%;
    color: white;
}
body{
    background-image: linear-gradient(150deg, #21202cc0 70%,  
    #2a2544b1 ), url(./assest/image/cookie-the-pom-gySMaocSdqs-unsplash.jpg);
   background-size: cover;
   background-position: center;
}
nav{
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    background: #001;
    height: 35px;
    font-size: 20px;
}
nav > *{
    margin-right: 5px;
   
}
nav > * > *{
    padding-left: 10px;
}
a{
    text-decoration: none;
    color: aliceblue;
}
main{
   text-align: center;
}
.work{
    position: relative;
    top: 180px;
}
h1{
    font-size: 100px;
}
span{
    font-size: 30px;
}
.em{
    font-size: 20px;
}
.contacts{
    margin-top: 40px;
}
.icon{
    margin: 20px;
    font-size: 40px;
    border-radius: 12px;
    padding: 2px;
}


.icon:hover{
     transform: scale(2);
     transition: 0.5s all ;
}
.fa-github:hover{
    background-color: black;
    border-radius: 10px;
    border: 5px solid black;
}
.work  .fa-linkedin{
    color: rgb(13, 131, 216);
}
.work .fa-linkedin:hover{
    border: 5px solid rgb(13, 131, 216) ;
    background-color: rgb(13, 131, 216);
    color: white;
}
.work .fa-twitter{
    color: rgb(10, 99, 215);
}
.work .fa-twitter:hover{
    border: 5px solid rgb(10, 99, 215) ;
    background-color: rgb(10, 99, 215);
    color: white;
}
.work .fa-instagram{
   color: rgb(240, 106, 189)
}
.work .fa-instagram:hover{
    border: 5px solid rgb(231, 68, 136) ;
    background: linear-gradient(35deg, #aa1b9e 40%, #e43d38);
    color: white;
}
.work .fa-whatsapp{
    color: green;
}
.work .fa-whatsapp:hover{
    color: white;
    background-color: rgb(8, 164, 8);
    width: 50px;
    height: 50px;
    text-align: center;
    padding: auto;
}
@media  screen and (max-width: 720px) {
    h1{
        font-size: 70px;
    }
    span{
        font-size: 25px;
    }
    .em{
        font-size: 18px;
    }
    .icon{
        font-size: 35px;
    }

}