body {
    background-color: #f8f8f8;
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: 1000;
    overflow: scroll;
    min-width: 100%;
    min-height: 100%;
    display: flex;
    align-items: left;
    justify-content: left;

}
  body h2 {
    display:none;
  }

.header {
    position: fixed;
    top: 10px;
    left: 10px;
    opacity: 0.85;
    z-index: 100;
}

.header a {
    color: rgb(239, 25, 25);
    font-size: 20px;
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    z-index: 1;
    padding-top: 0px;
}

.content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: left;
    align-items: flex-start;
}

.text-section {
    width: 50%;
    padding-right: 20px;
    background-color: #f8f8f8;
    justify-content: left;
    padding-top:2%;
}

.image-section {
width: 100%;
height: 100vh;
position: sticky;
top: 0;
margin-left: 20%;
display: flex;
flex-direction: row;
gap: 10px;
}

.text-section img, .image-section img {
width: calc(100% - 7px);
height: 100%;
object-fit: cover;
flex-shrink: 0;
}

.content h1 {
    font-family: 'Open Sans', sans-serif;
    padding-top: 20px;
    padding-bottom: 0px;
    text-align: left;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    margin-left: 5%;
    font-size: 14px;
}

.text {
    font-family: 'Open Sans', sans-serif;
    padding-top: 10px;
    padding-bottom: 0px;
    text-align: left;
    font-weight: 100;
    width: 100%;
    margin-left: 5%;
    font-size: 14px;
    list-style-type: none;
    padding-left: 0;
}

.text a {
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    font-weight: 100;
    font-size: 14px;
    color: black;
    text-decoration: underline;
}



@media only screen and (max-width: 767px) {
    body {
        background-color: #f8f8f8;
        margin: 0;
        margin-left: 2%;
        font-family: 'Open Sans', sans-serif;
        font-weight: 1000;
        overflow-x: scroll;
        overflow-y: scroll;
        min-width: 100%;
        min-height: 100%;
        display: flex;
        align-items: left;
        justify-content: left;
        padding-top: 7%;
        font-size: smaller;
    }
    
    .container {
        min-width: 150vw;
    }
    
    .content {
        flex-direction: row;
        min-width: 150vw;
    }
    
    .text-section {
        width: 70vw;
        min-width: 70vw;
        flex-shrink: 0;
    }
    
   .image-section {
width: 80vw;
min-width: 80vw;
height: 100vh;
position: sticky;
top: 0;
flex-shrink: 0;
margin-left: 0%;
display: flex;
flex-direction: row;
gap: 5px;
 }
 
.image-section img {
width: calc(100% - 3px);
}


  }