body {
    font-family: 'Lora', serif;
    margin: 0;
    height: 100vh;
    background: linear-gradient(to right, #f5f5dc, #e0e0d1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.slideshow-container {
    position: relative;
    max-width: 1000px;
    width: 80%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

.slide {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

.text {
    font-family: 'Lora', serif;
    color: #333;
    font-size: 36px;
    padding: 40px;
    text-align: center;
    max-width: 80%;
}

.slide:nth-child(n+4) .text {
    font-size: calc(36px * 0.75);
}

.image-container {
    display: flex;
    justify-content: center;
}

.slide-image {
    max-width: calc(33.33% - 20px);
    height: auto;
    margin: 10px;
}

/* Style for navigation arrows */
a {
   text-decoration :none ;
   position :absolute ;
   top :50% ;
   transform :translateY(-50%);
   color :white ;
   font-size :24px ;
   padding :15px ;
   background :linear-gradient(135deg ,#ff7e5f ,#feb47b );
   border-radius :50% ;
   box-shadow :04px8pxrgba(0 ,0 ,0 ,0.2 );
   transition :background-color0.3s ,transform0.3s ,box-shadow0.3s ;
}

a:hover {
   background :linear-gradient(135deg ,#feb47b ,#ff7e5f );
   transform :translateY(-50%) scale(1.2);
   box-shadow :06px12pxrgba(0 ,0 ,0 ,0.3 );
}

a:first-of-type {
   left :20px ;
}

a:last-of-type {
   right :20px ;
}