body {
    margin: 0;
    height: 1700px;
}

.toh-white {
    background-color: white;
}

.toh-black {
    background-color: black;
}

.toh-orange {
    color: orangered;
}

.toh-background {
    background-image: url("../images/background.jpg");
    background-repeat: repeat;
}

.toh-social {
    height: 32px;
    width: auto;
    display: flex; 
    justify-content: flex-end;
    margin-right: 15%;
}

.toh-gallery-title {
    color: orangered;
    font-size: 1.2em;
}

.toh-next-quicklink {
    text-align: center;
    height: 3em;
    margin-top: 2em;
}

.toh-next-quicklink > span {
    color: white;
}

/* copied from nav-link-item */
.toh-next-quicklink > a {
    text-decoration: none;
    transition: color 200ms ease-in;
    color:  rgb(255, 81, 0);
}

.toh-next-quicklink > a:hover {
    color: greenyellow;
}

.toh-content {
    padding-top:1em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 1em;
    min-height: 15em;
}

/* slant division */
.toh-slant-div {
    overflow: hidden;
    width: 100%;
    height: 100px;
    background-color: white;
}

.toh-slant-div > div {
    width: 130%;
    height: 100px;
    background-color: black;
    transform: rotateZ(-2deg);
    margin-left: -5%;
    margin-top: -3%
}

.toh-fa-overrides-header {
    color: white;
    background-image: linear-gradient( to bottom, transparent 20%, black 20%, black 93%, transparent 93% );
    background-size: 75%;
    background-position: 50% 0;
    background-repeat: no-repeat;
}

.toh-top-override {
    margin-top: 50px;
}

.toh-footer {
    display: flex;
    justify-content: space-between;
    margin-left: 10%;
    margin-right: 10%;
}

.toh-copywrite {
    display: flex;
    justify-content: center;
}

@media only screen and (max-width: 800px) {
    /* 
     * center the footer, column format (reverse column) 
     */
    .toh-social {
        display: flex;
        justify-content: center;
        margin: auto;
    }

    .toh-footer {
        flex-direction: column-reverse;
        justify-content: center;
    }

}