*{
    margin:0;
    padding: 0;
    font-family: "open sans", sans-serif;
    box-sizing: border-box;
    
}
body{
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}
.about-section{
    background: url(hs.jpg) no-repeat left;
    background-size: 100%;
    background-color:burlywood;
    overflow: hidden;
    padding: 100px 10;
}
.inner-container{
    width: 55%;
    float: right;
    background-color:gainsboro;
    padding: 150px;
}
.inner-container h1{
    margin-bottom: 30px;
    font-size: 50px;
    font-weight: 900;

}
.text{
    font-size: 15px;
    color: grey;
    line-height: 30px;
    text-align: justify;
    margin-bottom: 40px;
}
.social-menu ul{
    display: flex;
    position: absolute;
    transform: translate(-50%, -50%);
   
}
.social-menu ul li{
    list-style: none;
    margin: 0 15px;
   
}
.social-menu ul li a{
    position: relative;
    display: block;
    width: 45px;
    height: 0px;
    background-color: none;
    text-align: center;
    font-size: 52px;
    color:peru;
    line-height: 90px;
    transition: .6s;
    left: 220%;
    min-width: 90px;
}
.social-menu ul li a:hover{
    color: blue;
}

@media screen and (max-width:1000px){
    .about-section{
        background-size: 100%;
        padding: 100px 40px;
    }
    .inner-container{
        width: 100%;
    }
}
@media screen and (max-width:600px){
    .about-section{
       padding: 0;
    }
    .inner-container{
       padding: 60px;
    }
}