@media only screen and (min-width:  320px) and (max-width: 649px){

    * {
        padding: 0;
        margin: 0;
        }

    html{
        overflow-x: clip;
        height: auto;
    }

    body{
        background-color: #001E30;
        width: 100vw;
        height: auto;
        background-image: url(/Images/Adobe_Corkboard3.jpg);
        background-size: 600px;
        overflow-x: clip;
    }
    
    img{
        filter: drop-shadow(0px 5px 5px #000000), 
    }

    .Navigation_Container{
        position: sticky;
        top: 0;
        z-index: 100;
        filter: drop-shadow(0px 30px 20px #000000);
    }
    
    .NavBar{
        transform: translateX(100%);
    }
    
    .NavBar[data-visible="true"]{
        transform: translateX(0%);
    }
    
    .menu-toggle{
        position: absolute;
        top: 30px;
        right: 25px;
        width: 25px;
        height: 25px;
        border: 0;
        background-image: url(/Images/Hamburger_Menu.png);
        background-color: #001E30;
        background-repeat: no-repeat;
    }
        
    .Logo_Container {
        height: 80px;
        width: 100vw;
        background-color: #001E30;
    }
                
    .Logo > img {
        height: 80px;
        width: auto;
        padding-left: 10px;
    }
        
    li{
        background-color: black;
        list-style: none;
    }
        
    li a{
        display: block;
        width: 100%;
        height: 50px;
        text-decoration: none;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
        
    li a H1{
        width: 100%;
        height: 50px;
        display: flex;
        justify-content: center; 
        align-items: center;
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: 16px;
        font-weight: bold;
        color: white;
    }

    section{
        position: relative;
        top: -200px;
        margin-bottom: -200px;
    }

    .SectionTitle_Container{
        width: 100vw;
        height: 75px;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        margin: 30px 0 30px 0;
    }
    
    .SectionTitle_Mattboard{
        width: min(70%, 250px);
        height: 100%;
        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: min(80%, 200px);
        padding: 5px;
        height: 40px;
        background-color: #D9D9D9;
        font-family: 'Permanent Marker', cursive;
        font-size: 21px;
        background-image: url(/Images/PaperTexture.jpg);
        background-size: 400px;
        filter: drop-shadow(0px 2px 3px #000000);
        background-size: 200px;
        background-position: 50% 50%;
        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 200px;
        height: 250px;
        background-image: url(/Images/PaperTexture.jpg);
        background-size: 600px;
        display: flex;
        align-items: center;
        justify-content: space-around;
        flex-direction: column;
    }

    iframe{
        margin-top: 15px;
        width: 95%;
        aspect-ratio: 16 / 9;
    }

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

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

    h2{
        margin-top: 10px;
        padding-left: 5px;
        padding-right: 5px;
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: max(10px, 16px);
        text-align: center;
        text-justify: inter-word;
    }

    footer{
        height: 25px;
        width: 100vw;
        color: white;
        font-family: 'Courier Prime', 'Courier New', Courier, monospace;
        font-size: 9px;
        background-color: #001E30;
        display: flex;
        justify-content: center; 
        align-items: center;
    }
    
    }