body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  text-align: center;
  background: #1f2122;
}
h1 {
  font-size: 50px;
  color: #ff0084;
  font-family: "Great Vibes", cursive;
}

a {
  text-decoration: none;
  color: #ff0084;
  font-size: 20px;
}
a:hover {
  color: #ff4f00;
}
a:visited {
  color: #ff0084;
}
a:active {
  color: #ff4f00;
}
a:focus {
  outline: none;
}
a:focus-visible {
  outline: 2px solid #ff0084;
}
a:focus:not(:focus-visible) {
  outline: none;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.gallery-item {
  width: 300px;
  height: auto;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
.gallery-item:hover {
  transform: scale(1.05);
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background: rgba(0, 0, 0, 0.8);
}
.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
.close {
  position: absolute;
  top: 30px;
  right: 45px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
