body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  background: linear-gradient(to right, #000000, #000000);
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
}
h1.old {
  font-weight: bolder;
  font-size: 40px;
  pointer-events: none;
  color: darkcyan;
  text-align: center;
  font-family: "Rubik Marker Hatch", system-ui;
}

.video-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  width: 300px;
  animation: fadeIn 1s ease-in-out;
  font-family: "Caveat", cursive;
}

.video-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

video {
  width: 100%;
  height: auto;
}

.video-info {
  padding: 15px;
  text-align: center;
  font-size: 50px;
  color: darkcyan;
  background-color: whitesmoke;
}

.video-info h4 {
  margin: 10px 0 5px;
  font-size: 30px;
  color: #333;
}

.video-info p {
  margin: 0;
  color: #777;
  font-size: 18px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 768px) {
  .gallery-container {
    flex-direction: column;
    align-items: center;
  }

  .video-card {
    width: 90%;
    margin: 10px 0;
  }
}
/* footer */
footer {
  background-color: #97919100;
  font-family: "Akronim", system-ui;
}
h2 {
    font-family: "Akronim", system-ui;
    font-size: 60px;
}
