body {
  margin: 0;
  background-color: black;
  color: white;
  font-family: Arial, sans-serif;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#enter-button {
  padding: 20px 40px;
  font-size: 24px;
  background: red;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  box-shadow: 0 0 20px red;
  transition: 0.3s;
}

#enter-button:hover {
  background: darkred;
  box-shadow: 0 0 30px crimson;
}

.container {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-block {
  border: 4px solid red;
  margin-bottom: 30px;
  max-width: 80%;
}

.image-block img {
  width: 100%;
  height: auto;
  display: block;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.image-wrapper img {
  width: 100%; /* можно изменить, например, 50% или 400px */
  max-width: 600px;
  height: auto;
  border: 3px solid #cc0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.image-wrapper img:hover {
  transform: scale(1.05);
}
