body {
  height: 100vh;
  background-color: #202324;
}



.checkNewVideos
{
  text-align: center;
  width: 100%;
  color: white;
  justify-content: center;
  align-items: center;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.videosContainer {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  height: auto;
  padding: 0 60px; 
  box-sizing: border-box;
}


.featuredVideo:hover{
  transform: translatey(-2%);
  transition: 200ms;
  border: 1px solid white;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3); 

}

#carouselWrapper {
  margin: 0 auto;
  display: flex;
  align-items: center;

  gap: 10px;
  max-width: 100%; 
  margin: 20px auto;
  
}

#carouselViewport {
  overflow: hidden;
  width: 100%; 
}

#carouselTrack {
  display: flex;
  transition: transform 0.4s ease;

}

.featuredVideo {
  min-width: 150px;
  margin-right: 20px;
  box-sizing: border-box;
  height: auto;
  background: #f0f0f0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
 
}

.featuredVideo img {
  width: 100%;
  display: block;
  border-bottom: 1px solid #ccc;
}

.featuredVideo p {
  padding: 8px;
  font-size: 15px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.carouselButton {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #333;
  color: white;
  border: none;
  padding: 12px;
  font-size: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
  user-select: none;
}

#prevButton {
  left: 10px;
}

#nextButton {
  right: 10px;
}

.carouselButton:hover {
  background-color: #555;
}
.anniversary
{
  display: flex;
  bottom: 0;
  justify-content: center;
  align-items: center;
  
}

.anniversary img 
{
  height: 10%;
  width: 10%;
}

.thumbnail
{
  width: 100%;
}

.qr-display {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.card {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.29);
  width: 15% auto;
  height: auto;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 9px 21px 29px 0px rgba(0, 0, 0, 0.69);
  -moz-box-shadow: 9px 21px 29px 0px rgba(0, 0, 0, 0.69);
  box-shadow: 9px 21px 29px 0px rgba(0, 0, 0, 0.69);
  flex-direction: column;
}

form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
form > * {
  margin-top: 15px;
}

#submit {
  margin-bottom: 10px;
  padding: 15px 30px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: #fff;
  border-radius: 5px;
  background-color: #e74c3c;
}

.qr-method {
  display: none;
}

.input {
  margin: 5px;
  border: none;
  border-radius: 5px;
  text-align: center;
  width: 200px;
  height: 20px;
}

.title {
}

.title span {
  font-size: 30px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.containerFields {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.containerFields span{
 color: white;
}


.containerFields p{
 color: white;
}

#submit:hover {
  background-color: #c0392b;
  transform: scale(1.1);
}

footer {
  color: white;
  bottom: 0;
  text-align: center;
  margin-top: 50px;
  padding: 15px;
  font-size: 14px;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
  display: block;
  margin-top: 5px;
}

footer a:hover {
  text-decoration: underline;
}

.thumbnail {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}



/* 
@keyframes slideCarousel {
  0% { transform: translateX(0); }
  50% { transform: translateX(-60%); }
  100% { transform: translateX(0); }
} */

@media (max-width: 600px) {
  .featuredVideo p {
    font-size: 14px;
  }

  .featuredVideo {
    min-width: 100%;
    margin-right: 0;
  }

  #carouselTrack {
    flex-direction: column;
  }

  #prevButton
  {
    visibility: hidden;
  }

  #nextButton
  {
    visibility: hidden;
  }
  .featuredVideo img {
    width: auto;

}

.anniversary
{
  margin-top: 50px;
}

.anniversary img 
{
  height: 25%;
  width: 25%;

}


}
