body {
    text-align: center;
    font-family: Arial, sans-serif;
    background-color: #1f1422;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 20px;
} 
img {
    width: 10%;

    height: auto;
    border-radius: 0px;
}
h1 {
    font-size: 3vw; /* Scale with screen width */
    margin: 15px 0;
}
h2 {
    font-size: 2vw;
    color: #ffcc00;
    margin-bottom: 50px;
}
p {
    font-size: 1.3vw;
    opacity: 0.8;
    display: block;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0.4em;
    margin-bottom: 0em;

}
a {
    color: #7289da;
    text-decoration: none;
}
/* Adjust for smaller screens */
@media (max-width: 600px) {
    h1 { font-size: 7vw; }
    h2 { font-size: 5vw; }
    p, a { font-size: 4.5vw; }
    img { width: 70%; }
}

/*swiper style*/
.swiper {
    width: 100%;
    max-width: 600px;
    height: 335px;
    margin: 20px auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-color: #7289da; 
    opacity: 1
  }

    .swiper-button-next:hover,
  .swiper-button-prev:hover {
    color: #637edd; /* Slightly lighter on hover */
  }