*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
body{
    background-color: #000;
}
section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    left: 0px;
    position: absolute;
    top: 0px;
    height: 100%;
    width: 100%;
    transform: skew(-1deg);
    background-color: #000;
    z-index: -1;
}
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 1s;
}
header::before{
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F1C40F;
    clip-path: circle(17% at 95% -1%);
}
header img{
    height: 25px;
    width: 25px;
}
header .logo{
    position: relative;
    font-size: 2em;
    color: #f1c40f;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
}
header ul{
    position: relative;
    display: flex;
    right: 0;
    margin-top: 30px;
}
header ul li{
    list-style: none;
}
header ul li a{
    display: inline-block;
    margin-left: 17px;
}
header ul li a:hover{
    filter: invert(1);
}
.content{
    max-width: 610px;
}
.content h1{
    font-size: 4em;
    color: #fff;
    line-height: 1em;
}
.content p{
    font-size: 1.1em;
    color: #f1c40f;
    font-weight: 1em;
    padding-top: 30px;
    margin: 20px 0;
}
.content span{
    font-size: 1.1em;
    color: #F1C40F;
    font-weight: 1em;
    text-transform: uppercase;
}
.imgBx img{
    width: 30rem;
    height: 20rem;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    border: 2px solid #F1C40F;
}
.social{
    position: absolute;
    right: 25px;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.social li{
    list-style: none;
}
.social  li a{
    text-decoration: none;
    width: 50px;
    height: 50px;
    background: #F1C40F;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 5px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}
.social li a img{
    transform:scale(0.6);
    transition: 1s;
}
.social li:hover a img {
    transform: scale()rotate(360);
}
