body{
    font-family: 'Inter',sans-serif;
    background-color: #F0F0F0;
    color: hsl(240, 38%, 20%);
}
.container{
    background-color: #FFF;
    margin: 2% auto;
    width: 73%;
    padding: 2rem;
    background-image: url('./images/pattern-curve.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 24rem;
    border-radius: 4px;
}
.slide {
    display: flex;
    align-items: center;
}
.content{
    background-image: url('./images/pattern-quotes.svg');
    background-position: top -11% left 42%;
    padding:5% 0 0% 15%;
    background-repeat: no-repeat;
}
.content h4 {
    font-size: 14px;  
}
.content p {
    font-size: 18px;
}
.content h4 span{
    color:  hsl(240, 18%, 77%);
    font-size: 14px;
    font-weight: 500;
}
.slide img {
    width: 18rem;
    box-shadow: 0px 2px 16px hsl(240, 18%, 77%);

}
.slide .image{
    background-image: url('./images/pattern-bg.svg');
    padding:6% 6% 29px;
    background-repeat: no-repeat;
    background-position: center 2%;
    background-size: contain;
    position: relative;
}
.controls button{
    padding: 4px 8px;
    background-color: #FFF;
    border: 0;
    cursor: pointer;
}
.controls button:focus{
    outline: none;
  box-shadow: none;
}
.controls{
    background-color: white;
    box-shadow: 2px 2px 7px #E5E4EF;
    width: fit-content;
    margin-left: 12%;
    position: absolute;
    bottom: 5%;
    border-radius: 26px;
    padding: 4px 12px;
}
img.control-icon{
    width: 8px;   
     box-shadow: none;
}
@media only screen and (max-width: 375px) {
    .slide{
      flex-direction: column-reverse;
    }
    .controls{
        margin-left: 31%;
        bottom: 1%;
    }
    .container{
        background-size: 15rem;
    }
    .content{
        padding-top: 8%;
        padding-bottom: 13%;
        background-size: 6rem;
        margin-top: 5%;
    }
    .slide .image {
        padding: 8% 8% 4%;
    }
    .slide img.image-commentor{
        width: 16rem;
    }
  }