*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    height: 100vh;
    width: 100vw;
    background-color: rgb(210, 211, 210);
    overflow: hidden;
}
.container::after{
    content: "";
    height: 100vh;
    width: 100%;
    background: linear-gradient(to right, #b92b27, #1565c0);
    transform: skewY(10deg);
    z-index: 1;
    position: absolute;
    box-shadow: 0 0 8px 3px rgb(85, 83, 83);
}
.shoe{
    height: 75%;
    width: 85%;
    position: absolute;
    z-index: 2;
    top: 17%;
    left: 7%;
    box-shadow: 0 0 8px 3px rgb(46, 42, 42);
    background: linear-gradient(to right, #8a2387, #e94057, #f27121);
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 30px;
    border-radius: 1px;
}
.content{
    font-family:'Times New Roman', Times, serif;
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 8%;
}
.content > p{
    font-size: 18px;
}
.shoeImg{
    width: 50%;
    position: relative;
    bottom: 16%;
    left: 14%;
}
.shoeImg > img{
    width: 600px;
    height: 300px;
}
.shoeImg > img:hover{
    width: 900px;
    height: 600px;
    position:absolute;
    top: -70px;
    right: 8%;
}    