body {
  background-image: url('https://xmple.com/wallpaper/white-blue-gradient-linear-2560x1440-c2-ffffff-00bfff-a-270-f-14.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
}
.blok1 {
  position: absolute;
  margin-left: 10px;
  top: 20px;
  width: 400px;
  height: 920px;
  background-color: rgba(10, 3, 46, 0.938);
  border: 1px solid rgb(0, 0, 0);
  z-index: +1;

}

.search-bar {
  width: 90%;
  margin: 20px auto;
}

.search-bar input[type="text"] {
  width: calc(100% - 30px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
}

.genre-list {
  width: calc(100% - 67px);
  margin-left: 20px;
  margin-top: 20px;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.genre-list ul {
  list-style-type: none;
  padding: 0;
}

.genre-list li {
  margin-bottom: 5px;
  cursor: pointer;
}

.genre-list li:hover {
  background-color: #f0f0f0;
}

.blok2 {
  position: relative;
  width: 1520px;
  height: 920px;
  margin-left: 360px;
}

.container {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: space-between; /* Distribute items evenly */
  padding: 20px; /* Add padding for spacing */
}

.block {
  width: 350px;
  margin-bottom: 20px;
  height: 250px;
  box-sizing: border-box;
  background-color: #ddd;
  display: flex;
  margin-left: 100px;
  flex-direction: column;
  margin-top: 20px;
  justify-content: center;
  align-items: flex-end;
  font-size: 24px;
  overflow: hidden;
}

.block img {
  max-width: 100%;
  max-height: 100%;
}
.text {
  padding-left: 5px; /* Adjust this value as needed to move the text to the left */
}
.hidden {
  display: none;
}

@media screen and (max-width: 768px) {
  .blok1 {
    width: 90%; 
    margin-left: 5%; 
  }

  .blok2 {
    width: 90%; 
    margin-left: 5%; 
  }

  .container {
    justify-content: center; 
  }

}