.wholebody {
    max-width: 1000px;
    margin: 0 auto;
}

.body {
    background-color: #eee;
    border-radius: 5px;
    padding: 10px 40px;
    margin-bottom: 10px;
}

a {
    font-size: 16px;
    color: #007BFF;
    margin: 0 auto;
}

.image-con {
    text-align: center;
  }

.body img {
    width: 90%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid gray;
}

.body p {
    text-align: justify;
    font-size: 16px;
}


.button {
    text-align: center;
}

.button button {
    background-color: #007BFF;
    padding: 10px 30px;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    border: none;

}

.iframe-con {
    text-align: center;
}

iframe {
    width: 90%;
    height: 400px;
    border-radius: 5px;
}

.paragraph-con {
    max-width: 90%;
    margin: 0 auto;
}

.hidden {
    display: none;
}

.banner {
    margin: 150px auto 10px auto;
    width: 100%; /* Set the width of the container */
    overflow: hidden; /* Hide any overflow */
    border-radius: 5px;
    display: flex;
    align-items: center;
    text-align: center;
  }

  
  .banner img {
    width: 100%; /* Ensure the image fills the container horizontally */
    height: 100%; /* Ensure the image fills the container vertically */
    object-fit: cover; /* Scale the image while maintaining aspect ratio */
    border: 2px solid #eee;
    margin-bottom: 20px;
  }

@media (max-width: 955px) {

    .wholebody {max-width: 90%;}

.body {
    padding: 10px 10px;
}
    .body img {
        width: 100%;
    }

    .body p {
        font-size: 14px;
    }

    iframe {
        width: 100%;
        height: 180px;
    }

    .paragraph-con {
        max-width: 100%;
    }
    .banner {
        max-height: 120px;
    }
}
