.slideshow {
    grid-area: 1 / 2 / 3 / 6;
    padding: 20px;
    font-size: 30px;
    text-align: center;
    display: flex;
    justify-content: center;  /* Centers the images */
    align-items: center;      /* Centers images vertically */
}

.slideshow img {
    display: block;
    margin: 0 auto;
    width: auto;        /* Maintain natural width */
    max-width: 100%;    /* Prevent overflow */
    height: auto;       /* Maintain aspect ratio */
    max-height: 500px;  /* Prevent excessive height */
}

.slick-dots li button:before {
    color: white !important;  /* Makes dots white */
    font-size: 14px; /* Adjust size if needed */
}

.title {
    grid-area: 3 / 2 / 4 / 6; 
    padding: 20px;
    font-size: 30px;
    text-align: center;
    font-family: "Dela Gothic One", sans-serif;
}
.summary_body {
    grid-area: 4 / 2 / 5 / 6; 
    font-size: 24px;
    margin-top: -80px;
    text-align: center;
    vertical-align: top;
    font-style: italic;
    font-family: 'EB Garamond', serif;
}
.text_body {
    grid-area: 4 / 2 / 7 / 6;
    font-size: 28px;
    text-align: center;
    white-space: pre-wrap;
}
.info_body{
    grid-area: 7 / 2 / 7 / 6;
    padding:20px;
    font-size: 28px;
    text-align: center;
    background-color: #9dc1fa; 
    color: #151529;
    border: 10px solid #6482b3;
    border-radius: 40px 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(7, auto);
    grid-gap: 10px;
    padding: 10px;
}

.slide_img {
    display: none;
}

.next_button, .prev_button {
    cursor: pointer;
    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;
}

.next_button{
    right: 0;
}

.prev_button:hover, .next_button:hover {
    background-color:rgba(0, 0, 0, 0.8)
}

.slideshow_bullets{
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
  }

.numtext{
    color: white;
    font-size: 12px;
    top: 0;
    padding: 8px 12px;
}