*{
margin: 0;
padding: o;
box-sizing: border-box;
cursor: pointer;
font-family:sans-serif;
}
body{
    width: 100%;
    min-height: 100vh;
    background-color: black;
overflow: hidden;
}
header{
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    color: white;
    animation: header 2s ease-in-out;
}
@keyframes header{
    0%{
transform: translateY(-100%);
    }
}
nav li{
    display: inline-block;
    margin: 10px 20px;
    font-weight: 600;
}
.main{
    width: 100%;
    display: flex;
}
.content{
    width: 50%;
    margin-top: 8%;
    margin-left: 5%;
    color: white;
    overflow: hidden;
    animation: con 2s ease-in-out;
}
@keyframes con {
    0%{
    opacity: 0%;
    transform: translateX(-50%) 
    }
}
.content h1{
 font-size: 40px;
 margin-bottom: 1%;
 letter-spacing: 8px;

}
.contenth3{
    font-size: 25px;
    margin-bottom: 3%;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
span{
    color:darkorchid
}
.content p{
    font-size: 20px;
    margin-bottom: 3%;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
button{
    padding: 15px 30px;
    background: transparent;
    color: white;
    font-size: 17px;
    border-radius: 10px;
}
button:hover{
    background-color: rgba(166, 204, 29, 0.29);
}
.image{
    width: 50%;
    margin-top: 8%;
    z-index: -1;
}
img{
    width: 40rem;
    animation: c 5s ease-in-out;
}
@keyframes c{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translatex(-220%);
    }
}
@media screen and (max-width:1200px){
    .content{
        width: 100%;
        text-align: center;
    }
    .image{
        width: 100%;
        position: absolute;
        bottom: -5%;
        display: flex;
        justify-content: center;
        
    }
    img{
        width: 30rem;
    }
    
}
@media screen and (max-width:576px){
    .content{
        width: 100%;
        text-align: center;
    }
    .image{
        width: 100%;
        position: absolute;
        bottom: -2%;
        display: flex;
        justify-content: center;
        
    }
    img{
        width: 20rem;
    }
    
}