body {
    background-color: #f8f8ff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.banner-image {

    width: 100vw;
    height: auto;
    margin-top: 55px;

    object-fit: cover;
    object-position: 0 0;
}

.content-body {
    padding: 50px;
}

.content-section {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin: 100px;
}

.image {
    width: 500px;
    height: 100%;
    border-radius: 10px;
}

.image-small {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.content-text {
    margin: 0;
    font-size: 30px;
}

.text1 {
    flex: 1;
}

.text2 {
    flex: 2;
}

.footer {
    width: 100vw;
    height: 30px;
    background-color: #08224aff;
    color: #f8f8f8;
    padding: 5px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    html > * {
      display: none;
    }
    html:before {
      content: "This website is not optimized for mobile devices. Please view on a desktop or laptop computer.";
      display: block;
      padding: 1em;
      background-color: #f2f2f2;
      color: #333;
      font-size: 1.2em;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
    }
}

@media (min-width: 1450px) {
    .content-text {
        font-size: 40px;
    }
}