@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&family=Poppins:wght@500&display=swap');
@import url("https://fonts.googleapis.com/css?family=Molle:400i");
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@300&family=Poppins:wght@500&display=swap');

html, body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #1f263b;
  position: relative;
}

.banner {
  display: flex;
  background-image: url("Christmas-song-images/christmas-tree-closeup.jpg");
  background-size: cover;
  color: white;
  height: 38%;
  width: 100%;
  position: relative;
  justify-content: center;
  align-items: center;
  z-index: 0;
}

.banner h1{
  text-align: center;
  font-size: 7rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  animation: bounce 0.5s ease-in-out infinite;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}

#particlesJS{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.gallery{
  flex-direction: row;
  font-family: 'Fira Sans', sans-serif;
  font-family: 'Poppins', sans-serif;
}

.gallery-items{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  width: 25rem;
  height: 12.5rem;
  background-color: #eee;
  background-size: cover;
  background-position: center;
  color: white;
  font-size: large;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.3);
  padding: 1.25rem;
  margin: 1.8rem;
  border-radius: 1rem;
  transition: transform 0.3s;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

a {
  text-decoration-color: rgba(255, 255, 255, 0);
}

.card p{
  color: white;
  text-decoration-color: none;
}

.card:hover {
  color: white;
  transform: scale(1.2);
  filter: brightness(120%);
}

#joy-to-the-world{
  background-image: url(Christmas-song-images/joy-to-the-world.jpg);
}

#hark-angel-sing{
  background-image: url(Christmas-song-images/hark-the-herald-angels-sing.jpg);
}

#slient-night{
  background-image: url(Christmas-song-images/slient-night.jpg);
}

#twelve-days-of-christmas{
  background-position: bottom;
  background-image: url(Christmas-song-images/1-twelve-days-of-christmas-medana-gabbard.jpg);
}

#deck-the-halls{
  background-image: url(Christmas-song-images/deck-the-halls.jpg);
}

#jingle-bells{
  background-image: url(Christmas-song-images/jingle-bells.png);
}

#we-wish-you-a-merry-christmas{
  background-image: url(Christmas-song-images/christmas.jpg);
}

#carol-of-the-bells{
  background-image: url(Christmas-song-images/kevin.jpg);
}

#first-noel{
  background-image: url(Christmas-song-images/multi-colored-illuminated-lights-on-christmas-tree.png);
}


@media (max-width: 1500px) {
  #particlesJS {
    height: 200%;
    object-fit: contain;
  }
}

@media (max-width: 1000px) {
  #particlesJS {
    height: 350%;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .banner h1{
    font-size: 5rem;
  }
}

@media (max-width: 500px) {
  .banner h1{
    font-size: 3rem;
  }
}