body{
    /* background: linear-gradient(#f37ac9,#68556a);     */
    /* background-color: #717171; */
    background: linear-gradient(radial, #d8faf2 0%, var(--brandGreen) 100%);

    /* background: linear-gradient(135deg, #d4fc79 0%, #96e6a1 100%); */
}


body >h1 {
    padding-top: 14vh;
    /* padding: 5vh; */
    color:rgb(217, 239, 218);
    text-align: center;
    /* background: linear-gradient(#c3aeae,rgba(69, 32, 75, 0.2)); */
    margin: 0%;

}

#Slideshow-container {
    position: relative;
    height: 75vh;
    width: 100vw;
    display: grid;
    grid-template-columns: 12vw 76vw 12vw;
    grid-template-rows: 1fr;
}

.Slides {
        display: grid;
    align-self: center;;
    grid-template-rows: 1fr max-content max-content;
    height: 50vh;
    padding: 80px;
    padding-top: 120px;
    text-align: center;
    grid-column: 2;
    grid-row: 1;
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}


.Slides > q {
    /* gap: 20px;
    font-size: 35px; */
    align-self: center;
    font-size: 1.5rem;
    line-height: 1.8;
    letter-spacing: 1px;
    padding: 20px;
    color: var(--paragraphTextColour);
}

.slides > p {
        --brandPurple: #500596fe;

    font-size: 28px ;
    color: var(--brandPurple);
}

.prev, .next{
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #888;
    font-weight: bold;
    border-radius: 0 3px 3px 0;
    user-select: none;
    grid-row: 1;
    align-self: center;
    justify-self: center;
}

.arrow{
    height: 49px;
 
}

.prev{
    grid-column: 1;

}

.next{
    border-radius: 3px 0 0 3px;
    grid-column: 3;
}

.prev:hover, .next:hover {
    background-color: rgba(15, 74, 49, 0.8);
    color: white;
    opacity: 60%;
}

.author{
    --paragraphTextColour:#03210ec6;

    font-weight: bold;
    color: var(--paragraphTextColour);
    font-style: italic;
    font-size: 1.2rem;
}

/* copied  */

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
    background: linear-gradient(to right, rgb(166, 208, 166), var(--brandGreen));
  }
  
  /* The dots/bullets/indicators */
  .dot {
    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;
  }
  
  q {font-style: italic;}
  
  .author {color: cornflowerblue;}

  footer {
    margin: 0;
  }

  @media (max-width:768px) {

    .Slides{
    padding: 10px;
    height: max-content;
  }

    .slides > q {
        font-size: 1.2rem;
    }
  } 