*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body{
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.category-wrapper{
    margin-top: 29px;
    display: flex;
    justify-content: space-between;
    width: 50%;

}

.category-wrapper button{
    padding: 10px 30px;
}
.form-wrapper{
    padding: 50px;
    margin-top: 50px;
    width: 50%;
    min-width: 400px;
    background-color: rgb(184, 182, 182);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.input-container{
    width: 100%;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;

}
.input-container input{
    width: 100%;
    padding: 15px 10px;
    font-size: 18px;

}

.form-wrapper button{
    padding: 10px 20px;
    background-color: brown;
    color: beige;
    border: none;
}


img{
    border: 1px solid black;
    width: 300px;
     height: 200px;
    object-fit: contain;
}
.num_wrapper{
    display: flex;
    align-items: center;
}
.num_wrapper p{
    margin-right: 5px;
}

.banner-container{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr; 
    gap: 20px 20px; 
    grid-template-areas: 
      ". ."; 
    margin: 25px;
    border: 1px solid black;
    width: 100%;

}

.detail{
    display: flex;
    width: 100%;
}

.size-container{
    width: 100%;
    display: flex;

}
.sizes{
    margin-left: 25px;
}

