@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background:#E9967A;
    min-height: 100vh;
}

.container{
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 1080px;
    box-shadow: 0px 10px 20px rgb(0,0,0,0.1);
}
.container.rotated{
    width: auto;
}
.container .wrapper{
    display: flex;
    margin: 20px 0;
    min-height: 335px;
    box-sizing: border-box;
}
.wrapper{
    align-items: center;
}
.editor{
    border: 1px solid rgba(129, 129, 129, 0.8);
    border-radius: 5px;
    padding: 10px;
    width: 40%;
}
.head{
    margin-bottom: 20px;
    font-size: 35px;
    font-weight: 500;
    display:flexbox;
    width: 100%;
}
.title{
    font-size: 20px;
    margin: 10px 0px 10px 0px;
}
.filters .options button{
    display: inline-flex;
    padding: 5px;
    width:47%;
    height: 50px;
    margin: 3px;
    margin-top: 10px;
}
.options button{
    text-align: center;
    align-items: center;
    justify-content: center;  
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid rgba(129, 129, 129, 0.8);
    font-size: 17px;
    margin-top: 10px;
}
.options button:hover{
    background-color: rgba(98, 0, 255, 0.5);
    transition: 0.8s;
}
.rotate button{
    width: calc((100% / 4) - 5px);
    height: 50px ;
    margin-bottom: 10px;
}
.preview-img{
    display: flex;
    border: 1px solid rgba(129, 129, 129, 0.5);
    width: 70%;
    border-radius: 10px;
    margin-left: 30px;
    height: fit-content;
}
.preview-img.after{
    display:flex;
    border: 0;
    width: 400px;
    margin-left: 10px;
}
.preview-img.after img{
    display: block;
    width: 400px;
    border: 1px solid rgba(129, 129, 129, 0.8);
    border-radius: 10px;
    margin-left: 20px;
}

.filter-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: -10px;
}

.slider input{
    width: 100%;
    height: 5px;
    accent-color: #5372f0;
}
.footer{
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.btn{
    padding: 10px 20px ;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    border: 1px solid rgba(129, 129, 129, 0.5);
    margin: 5px;
    background-color: #fff;
}
.btn:hover{
    background-color: rgba(98, 0, 255, 0.5);
    transition: 0.8s;
}
