*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 12px;
}
body{
    background-color: #e0b071;
}



h1{
    font-size: 4em;
    margin-top: 40vh;
    margin-left: 20%;
    font-family: "Playwrite AU TAS", cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}
#sentence-content{
    font-size: 2em;
    line-height: 60px;
    margin-left: 30%;
    margin-top: 50px;
    font-family: "Playwrite AU TAS", cursive;
    font-optical-sizing: auto;
    font-weight: weight;
    font-style: normal;
}


#header{
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}

#header_sentence{
    width:50%;
}

#header_pic{
    width:50%;
    height: 100vh;
    object-fit: cover;
}


@media (max-width : 768px){
    #header_pic{
        display: none;
    }
    #header_sentence{
        width: 100%;
    }
}


#button-sets{
    display: flex;
    justify-content: center;
    border-top: #a75f1b solid 10px;
    padding-top: 50px;
    gap: 40px;
}

.button{
    display: inline-block;
    border:#d48f4f solid 3px;
    padding: 10px 40px;
}
.button:hover{
    background-color: #efe5d8;
}
.button:active{
    background-color: #7b4b13;
}





#goods{
    width: 92%;
    border: #7b4b13 dashed ;
    margin: 30px auto;
    display: flex;
    justify-content:center;
}
.goods-single{
    width: 300px;
    height: 400px;
    border: #7b4b13 solid 3px;
    margin: 10px;
}