*{
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;                                         
}
body{
    background: linear-gradient( rgb(255,219,0),rgb(0,88,163));
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
body::after{
    content: '';
    width: 100%;
    height: 100%;
    background: rgb(110, 0, 184);
    position: absolute;
    z-index: -1;
    clip-path: circle(30% at right 70%); 
}
.containr{
    width: 80%;
    height: 80%;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    overflow: hidden;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin: auto;
    padding: 20px 0;
}
nav ul li{
    display: inline-block;
    margin: 0 6px;
}
nav ul li a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: rgb(110, 0, 184);
    transform: 0.7s ease;
}
nav ul li a:hover{
    color:  rgb(245, 242, 51);
}
.content{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    margin: auto;
}
.content .text{
    width: 40%;
}
.content .text h2{
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px ;
    margin: 0 5px;
}
.content .text p{
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    margin: 10px 5px;
    letter-spacing: 1px;
}
.content .imge{
    width: 40%;
}
.content .imge img{
    width: 300px;
    margin-bottom: 2px;

}
@media (min-width:950px) and (max-width:1150px){
    .content .img img{
        width: 230px;
    }
}
@media (max-width:950px){
    .content ,nav{
        flex-direction: column;
        justify-content: center;
    }
    .content .imge , .content .text{
        width: 50%;
    }
    body::after{
        clip-path: circle(50% at bottom );
    }
    .containr{
        width: 90%;
        height: 90%;
    }
}