body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	filter: blur(20px);
  background-image: url(images/background/Легенды.png);
  background-size: cover;
  transform: scale(1.1);
  z-index: -1;
}

body {
  font-family: sans-serif;
  color: white;
  text-align: center;
  margin: 0;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0);
}

h1 {
  margin-bottom: 40px;
  font-size: 60px;
  margin-top: 0;
  background-color: #1f1f2a;
  border: 4px solid;
  border-radius: 30px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 15px;
  margin: 0 auto;
}

.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.video-link {	
  display: flex;
  width: 100px;
  height: 30px;
  background-color: #1f1f2a;
  border: 4px solid;
  border-radius: 15px;
}

.video-link a {
  text-align: center;
  font-size: 20px;
  text-decoration: none;
}
