body::before {
    background-image: linear-gradient(rgba(168, 148, 111, 0.486), rgba(168, 148, 111, 0.486)), url("../media/bkgd.jpg");
    background-size: cover;
    content: '';
    height: 100vh;
    left: 0;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: -1;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

#page-title {
    background-color: rgba(168, 148, 111, 0.486);
    color: rgb(182, 45, 21);
    font-family: "Kaushan Script";
    font-size: 2.5rem;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px .2rem rgba(0, 0, 0, 0.5);
}

#content {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 5rem;
}

#about {
    align-content: center;
    background-color:rgb(46, 71, 29);
    border: 2px solid white;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    font-size: 1.2rem;
    max-width: 40rem;
    min-height: 80%;
    line-height: 1.5rem;
    padding: 2rem;
}

#about h1 {
    font-family: "Newsreader";
    font-size: 4rem;
}

#photo {
    align-items: center;
    display: grid;
    grid-template-areas: "overlap-area";
    margin-left: 14rem;
}

#photo #bottom, #top {
    grid-area: overlap-area;
}

#photo #bottom {
    border: 2px solid white;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    max-width: 40rem;
}

#photo #top {
    border: 2px solid white;
    box-shadow: 0 1px .2rem rgba(0, 0, 0, 0.7);
    margin-left: -175px;
    margin-top: 125px;
    max-width: 20rem;
    z-index: 2;
}

@media screen and (max-width: 1000px) {
    #about {
        margin-top: 4rem;
    }

    #photo #top {
        display: none;
    }

    #photo {
        display: flex;
        margin: 4rem 0;
    }
}

@media screen and (max-width: 880px) {
    #photo #bottom {
        max-width: 30rem;
    }
}

@media screen and (max-width: 570px) {
    #page-title {
        font-size: 1.6rem;
    }

    #content {
        padding: 1rem;
    }

    #about {
        margin-top: 2rem;
    }

    #about h1 {
        font-size: 2.5rem;
    }

    #photo {
        margin: 2rem 0;
    }

    #photo #bottom {
        max-width: 20rem;
    }
}