@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

/* Gradient Background */
.gradient-background {
  background: linear-gradient(300deg, #178f4d, #37c3a2, #25464c);
  background-size: 180% 180%;
  animation: gradient-animation 18s ease infinite;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Navigation Bar */
.navbar {
  overflow: hidden;
}

.navbar a {
  float: left;
  text-align: center;
  font-size: 24px;
  padding: 14px 16px;
  text-decoration: none;
  color: white;
}

/* Body Styling */
body {
  background-color: #2d3339;
  background-repeat: no-repeat;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: white;
  text-align: center;
  margin: 0;
}

/* Logo */
.logo {
  height: 200px;
  width: 200px;
}

/* Links */
a {
  text-decoration: none;
  color: white;
}

/* Polaroid-style Video Thumbnails */
div.polaroid {
  margin: 7% 1%;
  font-size: 24px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  text-align: center;
  border-radius: 45px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: inline-block;
  transition: transform 0.5s ease-in-out;
}

div.polaroid:hover {
  transform: scale(1.2);
  z-index: 1;
}

/* Video Thumbnail Styling */
.video {
  border-radius: 50px;
  width: 480px;
  height: 270px;
}

.short {
  width: 410px;
}

.video-web {
  width: 720px;
  height: 404px;
}

/* Notification Container */
.container {
  background-color: #6b6b6b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
  color: white;
  padding: 10px;
  position: fixed;
  bottom: -100%;
  opacity: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  animation: smooth-appear 1s ease forwards;
  font-size: 16px;
}

@keyframes smooth-appear {
  to {
    bottom: 20px;
    opacity: 1;
  }
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #222;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.modal video {
  width: 80%;
  max-width: 800px;
  border-radius: 10px;
}

/* Close Button */
.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: white;
}

.close:hover {
  color: red;
}
