@charset "UTF-8";

body{
    display: flex;
    flex-direction: column;
}

header{
    width: 100%;
}

.title h1{
    text-align: center;
    font-size: 30px;
    margin-top: 50px;
}

.menu{
    width: 1000px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(210, 210, 210);
    display: flex;
    justify-content: space-between;
}

.menu-left{
    margin-left: 100px;
}

.menu-left a{
    font-size: 10px;
    margin-right: 15px;
    text-decoration: none;
    color: black;
}

.menu-right{
    margin-right: 100px;
}

.menu-right a{
    font-size: 10px;
    margin-left: 15px;
    text-decoration: none;
    color: black;
}

.container{
    width: 1000px;
    margin: 0 auto;
    padding-top: 50px;
    display: flex;
}

.item-img{
    width: 550px;
}

.item-img img{
    width: 400px;
    margin-left: 100px;
}

.item-text{
    width: 350px;
    margin-right: 100px;
}

.item-name h2{
    font-size: 15px;
    border-top: 1px solid rgb(210, 210, 210);
    border-bottom: 1px solid rgb(210, 210, 210);
    padding: 15px 0 15px 0;
}

.item-explanation p{
    font-size: 12px;
    padding: 15px 0 15px 0;
}

.item-price p{
    font-size: 20px;
    padding: 15px 0 15px 0;
}

.item-price span{
    margin-left: 10px;
    font-size: 15px;
}

.item-color{
    padding: 15px 0 10px 0;
    display: flex;
    border-bottom: 1px solid rgb(210, 210, 210);
}

.item-color p{
    margin-right: 10px;
    font-size: 12px;
}

.item-color input{
    margin-right: 10px;
    position: relative;
    top: -3px;
}

.item-size{
    padding: 15px 0 10px 0;
    display: flex;
    border-bottom: 1px solid rgb(210, 210, 210);
}

.item-size p{
    margin-right: 10px;
    font-size: 12px;
}

.item-size input{
    margin-right: 10px;
    position: relative;
    top: -3px;
}

.item-quantity{
    padding: 15px 0 15px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgb(210, 210, 210);
}

.item-quantity p{
    margin-right: 10px;
    font-size: 12px;
}

#quantity{
    cursor: pointer;
    width: 40px;
    height: 30px;
    font-size: 12px;
}

.item-btn{
    margin-top: 20px;
}

.item-btn button{
    width: 350px;
    height: 50px;
    font-size: 15px;
    border: 1px solid rgb(176, 176, 176);
    border-radius: 3px;
    cursor: pointer;
    background-color: white;
}

.item-btn button:hover{
    background-color: black;
    color: white;
}

.item-table{
    margin-top: 20px;
}

.item-table th{
    width: 50px;
    height: 24px;
    font-size: 12px;
    border: 1px solid rgb(210, 210, 210);
    background-color: rgb(237, 237, 237);
    padding-top: 12px;
}

.item-table td{
    width: 50px;
    height: 24px;
    font-size: 12px;
    border: 1px solid rgb(210, 210, 210);
    padding-top: 12px;
    padding-left: 27px;
}

footer{
    margin-top: 50px;
    text-align: center;
}

footer small{
    font-size: 12px;
}