*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
body{
    width: 100%;
    height: 100vh;
    background-image: url(img/big/1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #221711;
}
nav{
    width: 98%;
    height: 10vh;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
nav .burger{
    width: 30px;
    height: 30px;
    display: block;
    display: flex;
    flex-direction: column;
    color: #C09E80;
    gap: 5px;
    background-color: transparent;
    justify-content: center;
}
nav .burger span{
    width: 30px;
    border: 1px solid;
    border-radius: 10px; 
}
nav .burger span:nth-child(2){
    width: 20px;
}
nav .burger span:last-child{
    width: 10px;
}
.box{
    width: 100%;
    height: 90vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.box .item{
    width: 300px;
    height: 700px;
    border: 4px solid #5B4838;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box .item:first-child{
    background-image: url(img/main/1.jpg);
    background-size: cover;
    background-position: center;
}
.box .item:nth-child(2){
    background-image: url(img/main/2.jpg);
    background-size: cover;
    background-position: center;
}
.box .item:nth-child(3){
    background-image: url(img/main/3.jpg);
    background-size: cover;
    background-position: center;
}
.box .item:last-child{
    background-image: url(img/main/4.jpg);
    background-size: cover;
    background-position: 35%;
}
.box .but{
    width: 80%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.box .but a button{
    width: 250px;
    height: 7vh;
    color: #C09E80;
    font-family: 'Roboto';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
    font-size: 24px;
    border: 2px solid #5B4838;
    text-align: center;
}
.box .but a button:hover{
    border-color: #C09E80;
    color: #f7cfaf;
}
@media screen and (min-width: 320px){
    .box{
        gap: 6px;
    }
    .box .item{
        width: 147px;
        height: 324px;
        border: 3px solid #5B4838;
    }
    .box .but a button{
        width: 127px;
        height: 4vh;
        font-size: 14px;
    }
}
@media screen and (min-width: 480px){
    .box{
        gap: 6px;
        align-items: center;
    }
    .box .item{
        width: 171px;
        height: 318px;
        border: 3px solid #5B4838;
    }
    .box .but a button{
        width: 136px;
        height: 4vh;
        font-size: 12px;
    }
}
@media screen and (min-width: 525px){
    .box{
        gap: 6px;
        align-items: center;
    }
    .box .item{
        width: 215px;
        height: 318px;
        border: 3px solid #5B4838;
    }
    .box .but a button{
        width: 180px;
        height: 4vh;
        font-size: 12px;
    }
}
@media screen and (min-width: 657px){
    .box{
        gap: 6px;
        align-items: center;
    }
    .box .item{
        width: 154px;
        height: 379px;
        border: 3px solid #5B4838;
    }
    .box .but a button{
        width: 124px;
        height: 4vh;
        font-size: 12px;
    }
}
@media screen and (min-width: 768px){
    .box .item{
        width: 178px;
        height: 438px;
    }
    .box .but a button{
        width: 156px;
    }
}
@media screen and (min-width: 1024px){
    .box{
        gap: 15px;
    }
    .box .item{
        width: 244px;
        height: 600px;
    }
    .box .but a button{
        width: 215px;
        height: 6vh;
        font-size: 18px;
    }
}
@media screen and (min-width: 1200px){
    .box{
        gap: 15px;
    }
    .box .item{
        width: 244px;
        height: 600px;
    }
    .box .but a button{
        width: 215px;
        height: 7vh;
        font-size: 18px;
    }
}
@media screen and (min-width: 1440px){
    .box .item{
        width: 314px;
        height: 650px;
    }
    .box .but a button{
        width: 250px;
        height: 7vh;
        font-size: 20px;
    }
}
@media screen and (orientation: landscape) and (height: 320px){
    .box{
        gap: 6px;
        align-items: center;
    }
    .box .item{
        width: 157px;
        height: 276px;
        border: 3px solid #5B4838;
    }
    .box .but a button{
        width: 117px;
        height: 7vh;
        font-size: 12px;
    }
}