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

    :root {
        --percentage: .75;
      }

    * {
    padding: 0;
    margin: 0;
    }
    
    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;
    }

    .Mattboard{
        width: max(900px, 90%);
    }
    
    .SectionTitle_Container{
        width: 100vw;
        height: 300px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .SectionTitle_Mattboard{
        width: max(700px, 50%);
        height: 50%;
        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{
        width: 90%;
        height: 60%;
        background-color: #D9D9D9;
        font-family: 'Permanent Marker', cursive;
        font-size: 61px;
        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: 5%;
        margin-right: 5%;
        margin-bottom: 50px;
        height: 100%;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-content: space-between;
        gap: 25px;
    }

    .Tile{
        padding: 30px;
        flex: 1 0 300px;
        height: 400px;
        background-image: url(/Images/PaperTexture.jpg);
        background-size: 600px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }

    iframe{
        width: 95%;
        aspect-ratio: 16 / 9;
    }

    article{
        flex: 1;
        background-color:blue;
    }

    p   {
        padding: 5px;
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: max(16px, 26px);
    }

    h2{
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: 16px;
        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;
    }


}