  /* For screens smaller than 600px (e.g., phones) */
@media (max-width: 600px) {
  h1 {
    font-size: 28px;
  }

  .image {
    width: 100%;
  }

  ul li a {
    font-size: 28px;
  }
}

/* For screens between 600px and 1024px (e.g., tablets) */
@media (min-width: 601px) and (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }

  .image {
    width: 100%;
  }

  ul li a {
    font-size: 36px;
  }
}

/* For screens larger than 1024px (e.g., PCs) */
@media (min-width: 1025px) {
  h1 {
    font-size: 48px;
  }

  .image {
    width: 100%;
  }

  ul li a {
    font-size: 48px;
  }
}

body {
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: url('/assets/background.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'Playfair', serif;
  }
  
  
  h1 {
    margin-top: 50px;
    display: flex;
    justify-content: center;
  }
  
  h1 img {
    max-width: 100%;
  }
  
  ul {
    list-style-type: none;
    margin: auto;
    padding: 0;
    margin-top: auto;
    margin-bottom: 30px;
  }
  
  ul li {
    display: inline-block;
    margin-right: 100px; 
  }
  
  ul li:last-child {
    margin-right: 0;
  }
  
  ul li a {
    text-decoration: none;
    color: rgb(78, 1, 1);
    font-weight: bold;
    font-size: 40px;
    display: inline-block;
    border: 2px solid rgb(100, 1, 1);
    border-radius: 50px;
    padding: 1px;
    background-color: white;
    line-height: 1;
    width: 200px;
  }
  
  
  footer {
    background-color: #f5f5f580;
    padding: 20px;
  } 

  .textbox {
    text-align: center;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 80px;
    font-size: 30px;
    padding: 10px;
    color: #000000;
    border: 2px solid rgb(100, 1, 1);
    background-color: white;
    border-radius: 30px;
    width: 70%;
  }

  .headerbox {
    text-align: center;
    margin: auto;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 30px;
    padding: 10px;
    color: #000000;
    border: 2px solid rgb(100, 1, 1);
    background-color: white;
    border-radius: 50px;
  }

  .homequote {
    text-align: center;
    margin: auto;
    font-size: 30px;
    padding: 10px;
    color: #000000;
    border: 2px solid rgb(100, 1, 1);
    background-color: white;
    border-radius: 30px;
    width: 70%;
  }


  .image {
    margin: auto;
    max-width: 600px;
  } 

  .insta-image {
    margin: auto;
    max-width: 50px;
  } 

  * {box-sizing:border-box}

  /* Slideshow container */
  .slideshow-container {
    max-width: 1000px;
    max-height: 1500px;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  /* Next & previous buttons */
  .prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }

    /* Position the "next button" to the right */
  .prev {
    left: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
  }

  .gallery-text {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: auto;
    color: #f2f2f2;
    font-size: 20px;
    text-align: center;
    padding: 10px;
    color: #000000;
    border: 2px solid rgb(100, 1, 1);
    background-color: white;
    border-radius: 30px;
    width: 70%;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #000000;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  .active, .dot:hover {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
  }

  