*{
    padding: 0%;
    margin: 0%;
}
body{
    font-family: 'poppins',sans-serif;
}
.top{
    display: flex;
    justify-content: space-between;
    padding: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
    color: #1d232c;
}
.options{
    display: flex;
    padding: 10px;
}
.option{
    padding: 10px;
}
.options :hover{
    text-decoration: underline;
    color: black;
}
.design{
    padding: 10px;
    display: none;
}
.slide{
    width: 50%;
    height: 100%;
    background-color: #1d232c;
    color: aliceblue;
    position: fixed;
    display: block;
    top: 0%;
    left: -60%;
    transition: 2s;
}
.design1{
    text-align: right;
    padding: 10px;
}
.Aoptions{
    padding: 10px;
}
.Aoption{
    padding: 10px;
}
.Aoptions :hover{
    text-decoration: underline;
}
.heading{
    display: flex;
    justify-content: center;
    padding: 50px;
    gap: 50px;
}
.hbutton{
    background-color: #1d232c;
    color: white;
    padding: 10px;
    margin: 20px;
    cursor: pointer;
}
.subheading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.boxes{
    background-color: aquamarine;
    gap: 20px;
    border-radius: 10px;
    padding: 10px;
    margin: 10px;
}
.new{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.newone{
    position: relative;
    flex-basis: 20%;
}
.new button{
    position: absolute;
    top: 50%;
    left: 50px;
    padding: 15px;
    margin: 10px;
    border: none;
    border-radius: 10px;
    background-color: bisque;
    color: #1d232c;
    cursor: pointer;
}
.middleone{
    padding: 10px;
    text-align: center;
    margin: 10px;
}
.mone{
    border-color: #1d232c;
    border-width: 5px;
    border-style: solid;
    width: 500px;
    border-radius: 10px;
    align-items: center;
    margin: auto;
    padding: 5px;
    margin: 10px;
}
.middleone button{
    background-color: #1d232c;
    color: white;
    border-radius: 10px;
    padding: 8px;
}
.foot{
    background-color: #1d232c;
    color: white;
    padding: 10px;
}
.search{
    border-radius: 20px;
    border-color: #1d232c;
    border-width: 6px;
    border-style: solid;
    display: flex;
    width: 80%;
    margin: auto;
    justify-content: space-between;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.search input{
    background-color: transparent;
    border: none;
    width: 100%;
}
.search input:focus{
    outline: none;
}
.shirts{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 5px;
}
.shin{
    flex-basis: 22%;
}

.all{
    background-color: #1d232c;
    color: aliceblue;
    height: 550px;
    width: 80%px;
    margin: 20px;
    padding: 70px;
    align-items: center;
    border-radius: 20px;
}
.form input{
    width: 75%;
    padding: 30px;
    margin: 20px;
}
.form button{
    background-color: green;
    color: black;
    border-radius: 10px;
    border: none;
    padding: 10px;
}
@media screen and (max-width:700px){
    .design{
        display: block;
    }
    .options{
        display: none;
    }
    .box{
        flex-direction: column;
    }
}