*{
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-size: 100% 100%;
    background-color: #0D0C12;
}
.main_contain{
    display: flex;
    flex-direction: column;
    margin: auto;
    width: 99vw;
    height: 99vh;
    background-color: #ffffffaa;
}
.header{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 10%;
}
.header_button{
    margin-left: 10px;
    margin-right: 10px;
    padding-left: 10px;
    padding-right: 10px;
    line-height: 100%;
}
.content{
    display: flex;
    width: 100%;
    height: 80%;
}
.sidebar{
    width: 20%;
    height: 100%;
}
.preview{
    width: 100%;
    height: 50%;
}
.editing{
    width: 100%;
    height: 40%;
}
.export{
    width: 100%;
    height: 10%;
}
.wardrobe{
    flex-direction: column;
    overflow-y: scroll;
    width: 80%;
    height: 100%;
}
.wardrobe_category{
    display: flex;
    justify-content: left;
    overflow-x: scroll;
    flex-wrap: nowrap;
    width: 100%;
    height: 150px;
    margin-top: -20px;
}
.wardrobe_option{
    float: left;
    min-width: 100px;
    width: 100px;
    min-height: 100px;
    height: 100px;
    line-height: 100%;
    padding-left: 10px;
    padding-right: 10px;
    border: 2px red solid

}
.footer{
    width: 100%;
    height: 10%;
}