html {
    height: 100%;
}

body {
    background: #dedecbb0;
    background-size: cover;
    font-family: Lato;
    color: white;
    text-align: center;
}

h1 {
    font-weight: 700;
    font-size: 5em;
}

hr {
    width: 100%;
    border-top: 1px solid #f8f8f8;
    border-bottom: 1px solid rgba(0, 0, 0, 2);
}

#content {
    text-align: center;
    text-shadow: 0px 4px 3px rgba(0, 0, 0, 0.4),
        0px 8px 13px rgba(0, 0, 0, 0.1),
        0px 18px 23px rgba(0, 0, 0, 0.1);
}

#logo {
    height: 20em;
    width: auto;
}

#nav-bar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    padding-left: 5em;
    padding-right: 5em;
}

#nav-bar-items {
    display: inline;
}

#nav-bar-text {
    color: white;
    text-align: center;
    text-decoration: none;
    padding: 0.80em;
    font-size: 1.1em;
}

#nav-bar-text:hover:not(.active) {
    background-color: #eac115
}

#game-card-title {
    margin-bottom: 1em;
    padding: 0.80em;
}

.active {
    color: #eac115 !important;
}

a:link {
    color: #FFFFFF;
}

a:visited {
    color: #FFFFFF;
}

a:hover {
    color: #FFFFFF;
}

#featuredGameBanner {
    margin-top: 1.5em;
    background-color: #302e2e;
    border-style: solid;
    border-color: #000000;
    border-radius: 1%;
    border-width: 1px;
}

.center {
    display: inline-block;
    position: relative;

}

.video-banner {
    position: relative;
    height: 50vh;
    /* full screen */
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.video-banner .video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1;
    /* keeps video behind everything */
}

.banner-content {
    position: absolute;
    top: 50%;
    width: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: left;
    box-sizing: border-box;
    padding: 40px;
}

.banner-content .overlay-image {
    height: 100vh;
}

.image-container {
    position: relative;
    /* establishes a local stacking context */
}

.overlay-image {
    max-width: 80em;
    min-width: 80em;
    /* make banner image bigger */
    height: auto;
    display: block;
}

.text-overlay {
    position: absolute;
    /* positions text on top of image */
    top: 50%;
    left: 50%;
    transform: translate(15%, -50%);
    /* center over image */
    color: white;
    text-align: center;
}