@media only screen and (min-width:  900px) and (max-width: 1099px) {

    * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    }
    
    body{
        background-color: #001E30;
        height: auto;
        background-image: url(/Images/Adobe_Corkboard3.jpg);
        overflow-x: clip;
        filter: drop-shadow(0px 2px 3px #000000);
    }
    
    img{
        filter: drop-shadow(0px 5px 5px #000000);
    }
    
    .Navigation_Container{
        position: sticky;
        top: 0;
        z-index: 100;
        filter: drop-shadow(0px 30px 20px #000000);
    }
    
    .Logo_Container {
        height: 150px;
        width:100vw;
        background-color: #001E30;
        display: flex;
        align-items: center;
    }
    
    .Logo > img {
        height: 150px;
        width: auto;
        padding-left: 25px;
    }
    
    .NavBar {
        display: flex;
        width: 100vw;
        height: 50px;
        visibility: visible;
    }
    
    .menu-toggle{
        display: none;
    }
    
    li{
        flex: 1 1;
        background-color: black;
        list-style: none;
    }
    
    li a{
        display: block;
        width: 100%;
        height: 100%;
        text-decoration: none;
        color: white;
    }
    
    li a H1{
       width: 100%;
       height: 100%;
       display: flex;
       justify-content: center; 
       align-items: center;
       font-family: 'Courier Prime', 'Courier New', Courier, monospace;
       font-size: 21px;
       font-weight: bold;
       color: white;
    }
    
    .hover:hover {
        background-color: #76A5CC;
    }
    
    .hover:hover{
        color: black;
    }
    
    .SectionTitle_Container{
        width: 100vw;
        height: 200px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
    }
    
    .SectionTitle_Mattboard{
        width: max(50%, 600px);
        height: 60%;
        background-image: url(Images/Matt_Texture.jpg);
        background-color: #76A5CC;
        display: flex;
        align-items: center;
        justify-content: center;
        filter: drop-shadow(0px 5px 5px #000000);
    }
    
    .SectionTitle_Text{
        padding: 15px;
        width: 90%;
        height: 60%;
        background-color: #D9D9D9;
        font-family: 'Permanent Marker', cursive;
        font-size: 47px;
        background-image: url(/Images/PaperTexture.jpg);
        background-size: 600px;
        background-position: 50% 50%;
        filter: drop-shadow(0px 2px 3px #000000);   
        display: flex;
        justify-content: center; 
        align-items: center;
    }

    .Element_Container{
        margin-left: 50px;
        margin-right: 50px;
        margin-bottom: 50px;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: space-between;
        row-gap: 50px;
        column-gap: 25px;
    }

    .TextArea{
        background-image: url(/Images/PaperTexture.jpg);
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: 21px;
        padding: 10px;
    }

    .Wide_Element {
        width: 100%;
    }

    .Long_Container{
        flex: 1 1 400px;
        display: flex;
        flex-wrap: wrap;
        align-content: space-around;
    }

    .Long_Element{
        width: 100%;
    }

    #FBIMemo47{
        max-width: 100%;
        max-height: 100%;
    }

    #FBISketch{
        max-width: 100%;
        max-height: 100%;
    }

    #WeatherBalloon{
        max-width: 100%;
        max-height: 100%;
    }

    #NavyGimbal{
        max-width: 100%;
        max-height: 100%;
    }

    #AllegedUFO{
        max-width: 100%;
        max-height: 100%;
    }

    #UFOFormation{
        max-width: 100%;
        max-height: 100%;
    }

    #RingAd{
        max-width: 100%;
        max-height: 100%;
    }
    
    #NASAStudy{
        max-width: 100%;
        max-height: 100%;
    }

    #UFOSighting{
        max-width: 100%;
        max-height: 100%;
    }

    #FBIMemo2{
        max-width: 100%;
        max-height: 100%;
    }

    #CongressHearing{
        max-width: 100%;
        max-height: 100%;
    }

    .Citations > H2 {
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        text-align: center;
        font-size: 16px;
    }

    .Citations > p{
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: 12px;
        text-align: center;
        text-justify: inter-word;
    }

    footer{
        height: 50px;
        width: 100vw;
        color: white;
        background-color: #001E30;
        display: flex;
        justify-content: center; 
        align-items: center;
    }

}