body {
    margin: 0;
    padding: 0;
    background-color: #eaf2ff;
    font-family: Arial, sans-serif;
    background-image: url("eastback.jpg");
}
h1{
    text-align: center;
}
h5{
    text-align: center;
}
h2{
    text-align: center;
}
.container {
    max-width: 1000px;
    margin: 20px auto;
    padding: 0 20px;
}

.descriptionContainer {
    display: flex;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.imageSlider {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    max-width: 250px;
}

.gallery {
    display: flex;
    overflow: hidden;
}

.photo {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.prevBtn,
.nextBtn {
  
    color: rgb(17, 17, 17);
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 1.2rem;
}

.prevBtn {
    position: absolute;
    left: 0;
}

.nextBtn {
    position: absolute;
    right: 0;
}

.textContent {
    flex: 2;
    padding: 20px;
}

.title {
    margin-bottom: 10px;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-top: 20px;
}
/* Your existing styles... */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.modal-content, .caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal-prevBtn, .modal-nextBtn {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.modal-nextBtn {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prevBtn {
    left: 0;
    border-radius: 3px 0 0 3px;
}

.modal-prevBtn:hover, .modal-nextBtn:hover {
    background-color: rgba(0,0,0,0.8);
}

