.main-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    justify-content: center;
}

.hero {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    background: url("https://upload.wikimedia.org/wikipedia/commons/a/a3/091507-USCNeb-MemorialStadium.jpg") center center no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100vh;
    justify-content: center;
}

.hero-contents {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
}

.img-bg {
    background-color: rgba(255, 255, 255, .60);
}

.bottom-content-section {
    margin: .25rem;
    padding: .25rem;
}

.hero .bottom-content-section svg {
    height: 1.75rem;
    width: 1.75rem;
    fill: #fefefe;
}

#main-content {
    padding: 10px;
    padding-left: 10px;
    padding-right: 10px;
    z-index: 1;
    background: #fefefe;
}

.info-text {
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 1.25em;
    text-align: center;
    font-weight: 700;
}

.content-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    justify-content: center;
    padding: 5px;
}

.img-box {
    padding: 5px;
}

.shop-img {
    padding: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: #cacaca;
    border-radius: 3px;
    width: 100%;
}

.sign-off {
    align-self: center;
}

#sign-off-img {
    min-width: 35vw;
}

.footer {
    display: flex;
    justify-content: space-evenly;
    background-color: #E41C38;
}

.footer-spacer {
    width: 50px;
    min-width: 50px;
}

.footer-content {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #FFF;
    align-self: center;
    font-size: 1.5em;
    font-weight: 500;
}

@media screen and (max-height: 1000px) {
    /* When the screen height is less than 1000px */
    /* Make the hero full screen */
    .hero {
        height: 100vh
    }
}

@media screen and (max-width: 1000px) {
    /* When the screen width is less than 1000px */
    /* Let the images wrap */
    .content-row {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 700px) {
    /* When the screen width is less than 700px */
    /* Decrease the font size */
    .footer-content {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 500px) {
    /* When the screen width is less than 700px */
    /* Make the footer look right */
    .footer {
        display: block;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer-content {
        display: flex;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        font-size: 1.1em;
    }
    .footer-spacer {
        display: none
    }
    #footer-content-left {
        padding-bottom: 0px;
        padding-left: 45px
    }
    #footer-content-right {
        padding-left: 45px
    }
}

@media screen and (max-width: 300px) {
    /* When the screen width is less than 300px */
    /* Decrease the font size */
    .info-text {
        font-size: 100%
    }
}

@media screen and (min-width: 1000px) {
    /* When the screen width is greater than 1000px */
    #info-text-variable-size {
        font-size: 1em;
    }
}

@media screen and (min-width: 1150px) {
    /* When the screen width is greater than 1150px */
    #info-text-variable-size {
        font-size: 1.2em;
    }
}

@media screen and (min-aspect-ratio: 1350/1000) {
    .hero-contents {
        width: 150vh;
    }
}

a {
    color: #cacaca;
}

a:visited {
    color: #dbdbdb;
}

a:hover,
a:active,
a:focus {
    color: #ececec;
}
