@media only screen and (min-width:256px){ 

    html {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        scroll-behavior: smooth;
        background-color: whitesmoke;
    }

    header {
        position: relative;
        width: 100%;
        margin: auto;
    }

    body {
        margin: 0px;
        padding: 0px;
    }


    /* -------------------- NAV BAR -------------------- */
    /* Navbar Container */
    .navbar {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        background-color: #F0F0F0;
        border-bottom-color: rgb(192, 192, 192);
        border-bottom-style: solid;
    }
    
    /* Logo in navbar */
    .logoContainer img {
        height: 70px;
        width: 70px;
        margin-right: 10px;
    }

    /* Unordered List Container */
    ul {
        display: flex;
        flex-direction: row;
        list-style-type: none;
        font-size: large;
        font-weight: 300;
    }

    /* List Links */ 
    ul li + li:before {
        content: '|';
        padding: 0 10px;
        position: relative;
    }
    ul li a {
        color: #1f1f1f;
        text-decoration: none;
        background-color: #F0F0F0;
        padding: 15px;
        margin-left: 5px;
        border-radius: 5px;
        transition: 0.3s;
    }
    ul li a:hover {
        background-color: rgb(218, 14, 28);
        color: #F0F0F0;
        border-radius: 5px;
    }
    /* -------------------- NAV BAR -------------------- */



    /* -------------------- BODY ATTRIBUTES -------------------- */
    .weekSelectionContainer {
        background-color: rgb(218, 14, 28);
        border-bottom: solid rgb(192, 192, 192);
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .weekSelectionContainer h1 {
        color: #F0F0F0;
        margin: auto;
        margin-top: 10px;
    }

    .button-container {
        display: flex;
        flex-direction: row;
        margin-bottom: 10px;
    }

    .button-container button {
        margin: 5px;
        padding: 20px;
        border: none;
        border-radius: 5px;
        background-color: rgb(218, 14, 28);
        color: #F0F0F0;
        font-size: 14px;
        transition: 0.3s;
    }
    
    .button-container button:hover {
        background-color: rgb(170, 12, 23);
    }

    .content {
        display: flex;
        flex-direction: column;
        width: 70%;
        margin: auto;
        align-items: center;
    }
    /* -------------------- BODY ATTRIBUTES -------------------- */


    /* -------------------- TEXT ATTRIBUTES -------------------- */
    /* Generally edits h1 */
    h1 {
        text-align: center;
        color:#1f1f1f;
        font-weight: 600;
    }

    /* "Changes" and "Plans for Coming Week" */
    .content h2 {
        font-size: 32px;
        color:#1f1f1f;
        font-weight: 600;
        margin: auto;
        margin-top: 15px;
    }

    /* Update dynamic content */
    .content p1 {
        color:#1f1f1f;
    }

    /* Update dynamic content */
    .content p2 {
        color:#1f1f1f;
        margin-bottom: 150px;
    }
    /* -------------------- TEXT ATTRIBUTES -------------------- */


    /* -------------------- ABOUT ATTRIBUTES -------------------- */
    .AboutTab {
        display: flex;
        flex-direction: column;
        width: 70%;
        margin: auto;
        margin-top: 10px;
        align-items: center;
    }

    .AboutTab p2 {
        text-align: center;
        margin-bottom: 150px;
    }

    .AboutTab h1 {
        margin: auto;
        text-decoration: underline;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    /* -------------------- ABOUT ATTRIBUTES -------------------- */


    /* -------------------- DOWNLOADS ATTRIBUTES -------------------- */
    .downloadContainer {
        align-self: center;
        text-align: center;
        margin: auto;
        width: 65%;
    }

    .downloadContainer h1 {
        margin: auto;
        text-decoration: underline;
        margin-top: 30px;
    }

    .downloadContainer li {
        display: flex;
        flex-direction: row;
        margin: auto;
        margin-top: 10px;
    }

    .downloadContainer li a {
        background-color:rgb(218, 14, 28);
        color: whitesmoke;
        font-size: 16px;
        text-decoration: none;
        list-style: none;
        border-radius: 5px;
        padding: 15px;
        margin: auto;
        margin-bottom: 15px;
        text-align: center;
        transition: 0.3s;
    }
    .downloadContainer li a:hover {
        background-color:rgb(170, 12, 23);
    }

    .weeklyDocContainer {
        display: grid;
        grid-template-columns: auto auto auto auto auto;
        margin: auto;
    }

    .docDownloadContainer {
        display: flex;
        flex-direction: row;
        margin: auto;
    }

    .docDownloadContainer li a {
        font-size: 14px;
    }

    /* -------------------- TIMELINE ATTRIBUTES -------------------- */
    .ganttContainer {
        display: flex;
        margin-bottom: 50px;
        justify-content: center;
        justify-self: center;
    }

    .ganttContainer img {
        border: solid rgb(192, 192, 192);
        width: 90%;
    }

    .ganttDownloads {
        display: flex;
        justify-content: center;
        list-style-type: none;
        margin-bottom: 150px;
    }
    .ganttDownloads li a {
        background-color:rgb(218, 14, 28);
        color: whitesmoke;
        font-size: 16px;
        text-decoration: none;
        list-style: none;
        border-radius: 5px;
        padding: 15px;
        margin: auto;
        margin-right: 10px;
        text-align: center;
        transition: 0.3s;
    }
    .ganttDownloads li a:hover {
        background-color:rgb(170, 12, 23);
    }


    /* -------------------- TIMELINE ATTRIBUTES -------------------- */
}