* {
  margin: 0;
  padding: 0;
  font-family: "Lato", sans-serif;
  /* font-family: Arial, Helvetica, sans-serif; */
}

#video-clip {
  position: fixed;
  width: 100%;
  /* height: 100vh; */
  z-index: -1;
  top: -55%;
}

.logo {
  position: fixed;
  /* width: 50px; */
  padding: 20px;
  z-index: 1;
}

.main-header {
  text-align: center;
  padding-top: 10rem;
}

.main-header h1 span {
  color: #d6be76;
}

.main-header h1 {
  font-size: 4rem;
  margin-bottom: 0.7rem;
  line-height: 1.1;
}

.main-header p {
  font-size: 22px;
}

.image-gallery {
  padding-top: 10px;
  margin: 10px 50px;
  text-align: center;
}

.image-gallery h1 {
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-style: italic;
}

.image-gallery img {
  width: 205px;
  height: 140px;
  padding: 5px;
  /* filter: grayscale(100%); */
  transition: 1s;
}

#new-line {
  display: none;
}

.image-gallery img:hover {
  /* filter: grayscale(0); */
  transform: scale(1.1);
}

.image-gallery #img-1 {
  animation: fade-in 1s 0.8s forwards;
  opacity: 0;
}

.image-gallery #img-2 {
  animation: fade-in 1s 0.95s forwards;
  opacity: 0;
}

.image-gallery #img-3 {
  animation: fade-in 1s 1.1s forwards;
  opacity: 0;
}

.image-gallery #img-4 {
  animation: fade-in 1s 1.25s forwards;
  opacity: 0;
}

.image-gallery #img-5 {
  animation: fade-in 1s 1.4s forwards;
  opacity: 0;
}

.image-gallery #img-6 {
  animation: fade-in 1s 1.55s forwards;
  opacity: 0;
}

.image-gallery #img-7 {
  animation: fade-in 1s 1.7s forwards;
  opacity: 0;
}

.image-gallery #img-8 {
  animation: fade-in 1s 1.85s forwards;
  opacity: 0;
}

.image-gallery #img-9 {
  animation: fade-in 1s 2s forwards;
  opacity: 0;
}

.image-gallery #img-10 {
  animation: fade-in 1s 2.15s forwards;
  opacity: 0;
}

.image-gallery #img-11 {
  animation: fade-in 1s 2.3s forwards;
  opacity: 0;
}

.image-gallery #img-12 {
  animation: fade-in 1s 2.45s forwards;
  opacity: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

#btn-back-container {
  text-align: center;
  margin: 3rem;
}

a {
  text-decoration: none;
  color: #333;
}

.btn-back {
  display: inline-block;
  padding: 0.8rem 6.68rem;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
  color: #333;
  background-color: #d6be76;
}

.btn-back:hover {
  background-color: #333;
  color: #d6be76;
}

@media (max-width: 1100px) {
  #video-clip {
    top: -25%;
  }
}

@media (max-width: 950px) {
  #new-line {
    display: inherit;
  }
}

@media (max-width: 800px) {
  .image-gallery h1 {
    font-size: 22px;
  }

  #video-clip {
    top: -25%;
  }
}

@media (max-width: 500px) {
  #video-clip {
    top: 0px;
    width: 125%;
  }

  .main-header h1 {
    font-size: 3rem;
  }

  .image-gallery #before {
    margin-bottom: 1rem;
    margin-top: 2.5rem;
  }

  .image-gallery img {
    width: 118px;
    height: 80px;
    padding: 5px;
    transition: 1s;
  }
}
