html, body {
    background-color: black;
    color: white;
    max-width: 100%;
    overflow-x: hidden;
}

header {
    position: relative;
    background-color: black;
    height: 100vh;
    min-height: 25rem;
    width: 100%;
    overflow: hidden;
}

header .banner-container {
    width: 70%;
    margin: 0 auto;
    position: relative;
}

header .banner {
    width: 100%;
    position: absolute;
    margin: 0px 0 0 -50%; /*Half of 70%*/
    left: 50%;
}

header video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 90%;
}

header .overlay {
    position: absolute;
    bottom: 0;
    min-width: 100%;
    min-height: 100vh !important;
    background-image: url("../img/overlay.png");
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

h1 {
    font-size: 1.5em;
}

hr {
    margin-top: 5rem;
    margin-bottom: 5rem;
    min-height: 0.25rem;
    background-color: goldenrod;
}

footer {
    min-height: 5rem;
    color: rgb(255, 206, 0);
}

.wishlist-button-container {
    z-index: 100;
    position: relative;
    top: 60vh
}

.wishlist-button-container img {
    width: 2rem;
    margin-right: 1rem;
}

.wishlist-button-container button {
    color: #99da20;
    border-color: #99da20;
    background-color: rgba(128, 160, 0, 0.50);
}

.wishlist-button-container button:hover {
    color: #99da20;
    border-color: #99da20;
    background-color: rgba(128, 160, 0, 0.75);
}

.wishlist-button-container button:hover > img {
    filter: brightness(125%);
}

.watchtrailer-button-container {
    z-index: 100;
    position: relative;
    top: 62vh;
}

.watchtrailer-button-container img {
    width: 1.5rem;
    margin-right: 1rem;
}

.watchtrailer-button-container button {
    color: rgb(220, 200, 200);
    border-color: rgb(255, 64, 64);
    background-color: rgba(255, 0, 0, 0.50);
    font-size: 1rem;
}

.watchtrailer-button-container button:hover {
    color: rgb(255, 220, 220);
    border-color: rgb(255, 64, 64);
    background-color: rgba(255, 0, 0, 0.75);
}

.watchtrailer-button-container button:hover > img {
    filter: brightness(125%);
}

.label {
    max-width: 75vw;
    padding-bottom: 1rem;
}

#main-label {

}

h2 img {
    height: 6rem;
}

.gallery {
    position: relative;
    width: 100vw;
    text-shadow:
            -1px -1px 0 #000,
            1px -1px 0 #000,
            -1px 1px 0 #000,
            1px 1px 0 #000;
}

.gallery > .overlay {
    position: absolute;
    bottom: 0;
    min-width: 100%;
    min-height: 100vh !important;
    background-image: url("../img/overlay2.png");
    background-size: 100%;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 1;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: goldenrod;
}

.social-media-bar {
    position: fixed;
    top: 5rem;
    right: 5rem;
    z-index: 9999;
    width: 5rem;
}

.social-media-bar img {
    width: 3rem;
    filter: brightness(90%);
    transition: ease 0.25s;
}

.social-media-bar img:hover {
    filter: brightness(150%);
    transform: scale(1.25) translate(-0.5rem, 0);
}

h3 img {
    height: 3rem;
}

.contact .row img {
    width: 2rem;
}

footer .logo-icon {
    max-width: 10rem;
}

a {
    color: goldenrod;
}

a:hover {
    color: goldenrod;
    filter: brightness(125%);
}

p > .team {
    font-weight: bolder;
    font-size: 2rem;
}

@media only screen and (max-width: 768px) {
    .social-media-bar {
        right: 0;
        width: 10vw;
    }

    .social-media-bar img {
        width: 2rem;
    }

    #main-label {
        width: 0;
        height: 0;
    }
}