body {
    margin: 0;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-image: url(sl_072622_51930_13bg.png);
    background-size: cover; /* Розтягнути зображення на всю область, без втрати пропорцій */
    background-position: center center; /* Центрувати зображення */
    background-attachment: fixed;
  }

.container{
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: 10px;
  width: 1000px;
  margin: 0 auto;
  min-height: 100vh;
  }

.menu-container{
 grid-column: 1 / 2;
 height: 500px;
 width: 150px;
 display: flex;
 margin-left: 10px;
 margin-top: 130px;
 flex-direction: column;
 justify-content: flex-start;
 align-items: center;
 background-color: blue;
}



  .backHome{
    margin-top: 50px;
    margin-bottom: 20px;
    background-color: #b6b6b6;
    height: 70px;
    width: 140px;
    cursor: pointer;
  }
  .back{
    background-color: #b6b6b6;
    margin: 5px;
    height: 50px;
    width: 140px;
    cursor: pointer;
  }
  .backCrafts{
    background-color: #b6b6b6;
    margin: 5px;
    height: 50px;
    width: 140px;
  }


.boxes{
 margin-top: 50px;
 grid-column: 2 / 3;
 display: grid;
 grid-auto-flow: column;
 grid-template-rows: repeat(3, minmax(220px, auto));
 grid-auto-columns: minmax(270px, 1fr);
 overflow-x: auto;
 height: 680px;
 padding: 10px;
}


.box{
  margin-top: 10px;
  margin-left: 10px;
  background-image: url(Asset31.png);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 200px;
  flex-shrink: 0;
}

