body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0d0d2b;
  color: #fff;
  text-align: center;
}

.title {
  margin-top: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 15px;
}

.gallery-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 300px;
  display: block;
}




.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80vh;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.download {
  display: inline-block;
  margin-top: 20px;
  font-size: 18px;
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.titles{
    color: black;
}
.exit{
    float: right;
    width: 30px;
    height: 30px;
}