.MainWrapper {
    display: flex;
    flex-direction: column;
    z-index: 1;
    margin: 60px auto;
    width: 1560px;
    max-width: calc(90% + 60px);
    color: var(--text-color);
}

.MainWrapper ul li {
    margin-left: 50px;
}

#subheading {
    font-size: 150%;
    color: var(--main-color);
}

.MainWrapper button {
    border: 0;
    line-height: 2.5;
    padding: 0 20px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    border-radius: 5px;
    background-color: var(--darker-background-color);
    width: 215px;
}

.Thats_me {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

#TXT_Dustin_Dondrup {
    width: calc(100% - 540px);
    margin-left: 100px;
    text-align: justify;
    max-width: 90%;
}

#IMG_Dustin_Dondrup {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 20px solid var(--main-color);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 80vw;
    max-height: 80vw;
}

#IMG_Dustin_Dondrup img {
    width: 100%;
}

.MainWrapper button:hover {
    background-color: var(--accent-color);
}

.MainWrapper button:active {
    box-shadow: inset -2px -2px 3px rgba(255, 255, 255, .6), inset 2px 2px 3px rgba(0, 0, 0, .6);
}

@media(max-width: 1300px) {
    #subheading {
        font-size: 1.85vw;
    }
}

@media(max-width: 1050px) {
    /*.MainWrapper {
        margin-top: calc(var(--navbar-height) + 60px);
    }*/
    .Thats_me {
        flex-direction: column;
    }
    #TXT_Dustin_Dondrup {
        width: 100%;
        margin-left: 0px;
        margin-top: 60px;
    }
}

@media(max-width: 900px) {
    .MainWrapper {
        max-width: calc(90% + 30px);
    }
}

@media(max-width: 650px) {
    #subheading {
        text-align: center;
        font-size: 3vw;
    }
}