
      /* Center the content */
      body {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
        font-family: Arial, sans-serif;
        background-image: url("../images/background.jpg");
      }

      /* Carousel styles */
      .carousel-container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .carousel {
        position: relative;
        width: 80%;
        max-width: 800px;
        height: 500px;
        margin: 0 auto;
        overflow: hidden;
      }

      .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
      }

      .carousel-slide.active {
        opacity: 1;
      }

      .carousel-slide img {
        width: 100%;
        height: 100%;
      }

      .carousel-nav {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
      }

      .carousel-nav button {
        background: none;
        border: none;
        color: #fff;
        font-size: 24px;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s ease-in-out;
      }

      .carousel-nav button:hover {
        opacity: 1;
      }

      .carousel-nav .prev {
        position: absolute;
        left: 10px;
      }

      .carousel-nav .next {
        position: absolute;
        right: 10px;
      }

      .event-description {
        width: 773px;
        font-size: 16px;
        line-height: 1.5;
        font-style: italic;
        color: hsl(0, 0%, 4%);
        font-size: 21px;
      }

      /* Styling the title */
h2 {
  font-size: 24px;
  font-weight: bold;
  color: rgba(77, 22, 22, 0.74);
}
h1 {
  font-size: 28px;
  font-weight: bold;
  color: rgba(7, 7, 7, 0.74);
}
