@media (max-width: 820px) {
    html {
        display: flex;
        align-items: center;
        justify-content: center;
        padding-top: 1vh;
        padding-bottom: 1vh;
        padding-left: 15vw;
        padding-right: 15vw;
        background: url("media/toronto.JPG");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    h1 {
        font-size: 45px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    h2, .intro {
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-size: 22px;
        font-weight: 600;
    }

    h2 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .intro {
        margin-bottom: 10px;
    }

    p {
        font-family: "Geist", sans-serif;
        font-size: 17px;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    a {
        text-decoration: none;
    }

    #icon {
        font-size: 27.5px;
        text-decoration: none;
        color: white;
        padding-right: 10px;
        padding-left: 10px;
        transition: all 0.15s ease 0s;
    }

    #icon:hover {
        opacity: 0.5;
    }

    .main_box {
        color: white;
        padding: 5px;
        border-radius: 15px;
        min-width: 93.5vw;
        height: 89.5vh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        overflow-x: hidden;
    }

    .left_box, .content_box {
        width: 100%;
    }

    .left_box {
        order: 2;
        height: auto;
        text-align: center;
        overflow: visible;
        margin-bottom: 16px;
    }

    .content_box {
        order: 3;
        height: auto;
        flex-direction: column;
        overflow: visible;
    }

    .right_box {
        display: contents;
    }

    .nav_bar{
        order: 1;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        padding-top: 3px;
        padding-bottom: 3px;
        position: sticky;
        top: 0;
        z-index: 100;
        border-radius: 15px;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.35);
    }

    .top_name {
        margin-top: 10px;
        font-size: 20px;
    }

    .name, .btntxt{
        font-family: "Zalando Sans SemiExpanded", sans-serif;
        font-weight: 500;
    }

    .btntxt{
        font-size: 18px;
    }

    .pic {
        height: 150px;
        border-radius: 25px;
        margin-bottom: 0px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.35);
    }

    .subbox, .nav_bar{
        padding-left: 5px;
        padding-right: 5px;
    }


    .proj, .btn {
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.35);
        border-radius: 15px;
        padding: 6px;
        transition: all 0.15s ease 0s;
    }
}