#story-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#story-paragraph {
    margin-top: 5vh;
    font-size: 40px;
    font-family: "PlayFair", serif;
    font-weight: 500;
    color: rgb(60, 60, 60);
}

#story-link {
    margin-top: 5vh;
    font-size: 20px;
    color: rgb(35, 35, 35);
}

.swiper {
  width: 45%;
  height: 750px;
  margin-top: 5vh;
  margin-bottom: 5vh; /*Only if the next section start with a different color*/
}

@media screen and (max-width: 768px) {
    .swiper {
        width: 45%;
        min-width: 215px;
        height: 50vh;
        }
  }

.swiper-slide {
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.445);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.modal-story {
    position: relative;
    display: none;
    position: fixed; 
    left: 0;
    top: 0;
    z-index: 1; 
    width: 100%;
    height: 100%;
    background-color: rgb(255, 250, 250); 
}


.modal-story-content {
    border: none;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.modal-story-close {
    background-color: transparent;
    color: rgb(35, 35, 35);
    font-size: 45px;
    font-weight: bold;
    position: absolute;
    right: 5%;
    top: 10px;
    cursor: pointer;
}



#modal-story-paragraph {
    margin-top: 2vh;
    width: 80%;
    text-align: justify;
    font-size: 18px;
    margin-bottom: 10%;
}

#modal-story-heading {
    font-family: "Licorice", serif;
    text-align: justify;
    font-size: 70px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 8px;
}

body.modal-open {
    overflow: hidden;
}