@font-face {
  font-family: 'Comic Sans';
  src: url("assets/ComicSansMS3.ttf");
}

body {
    background-image: url('https://64.media.tumblr.com/18a8f650c24a118f21f9a489c02c4953/4e01025cd9cb6a0c-60/s400x600/94191a054e652077e320fbe6223a8865ff13c629.gifv');
    font-family: "Comic Sans MS", "Comic Sans", sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #0c38ff;
  }
  
  .container {
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    box-shadow: 2px 3px 17px #d7d7d7;
    }
  
  marquee {
    background-color: #7df049;
    color: #10155B;
    font-size: 14px;
    font-weight: bold;
    padding: 3px;
    /* border-top: 1px dotted blue;
    border-bottom: 1px dotted blue; */
  }
  
  h1 {
    color: #1400FF;
  font-size: 40px;
  text-shadow: 1px 1px #FF0;
  margin-top: 20px;
  }
  
  img {
    padding: 5px;
    background-color: white;
    max-width: 80%;
  }
  

  .title-container img {
    display:inline;
  }
  .title-container h1 {
    display:inline;
  }
  
  /* Gallery */
  
 .gallery-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.gallery-image {
  width: 100%;
  height: auto;
  display: none;
  margin:0 auto;
}

.active {
  display: block;
}

/* Navigation Arrows */

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.gallery-nav:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}


.gallery-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
}


  /* Testimonials  */
  .testimonials {
    margin-bottom: 30px;
    text-align: center;
    color: #9bff8c;
  }
  
  .testimonials h2 {
    color: #0000FF;
    font-size: 30px;
    display: inline-block;
    padding: 5px 15px;
    border-bottom: 1px dashed #0000FF;
    border-top: 1px dashed #0000FF;
  }
  
  .testimonial {
    background: url('assets/img/sparklebackground.gif');
    border: 1px solid #0f0f0e;
    border-radius: 8px;
    margin: 15px auto;
    padding: 10px;
    max-width: 90%;
    box-shadow: 1px 2px 3px #cacaca;
  }
  
  .photo-and-quote {
    display: flex;
    align-items: center;
    height: 80px;
    margin:0 auto;
    max-width:6200px;
  }
  
  .testimonial-image {
    width: 60px;
    flex-shrink: 0;
    margin: 20px;
  }
  
  .quote-container {
    flex-grow: 1;
    text-align: left;
    padding-left: 10px;
  }
  
  .quote {
    font: bold 18px monospace, arial;
    margin: 0;
  }
  
  .rating {
    margin: 10px 0;
  }
  
  .rating img {
    border: none;
    background: none;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0 2px;
  }
  
  .author {
    font-weight: bold;
    color: #9bff8c;
    text-align: center;
    margin: 0px 20px;
  }
  .counter {
    margin-top: 20px;
    font-weight: bold;
  }
  
  .footer {
    margin-top: 30px;
    font-size: 12px;
    color: #666666;
  }
  
  .error-container {
    padding: 40px;
  }
  
  .error-heading {
    color: #FF0000;
    font-size: 72px;
    margin-bottom: 20px;
  }
  
  .error-text {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .home-link {
    font-size: 18px;
    background-color: #FFFF00;
    padding: 10px;
    border: 2px solid #0000FF;
    display: inline-block;
    color: #0000FF;
    text-decoration: none;
    font-weight: bold;
  }
  
  .blink {
    animation: blinker 1s linear infinite;
  }
  
  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }