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;
  background-color: blueviolet;
  }

.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;
  }
