html, body {
    height: 100% !important;
    padding: 0px;
    margin: 0;
    color: #f0f0f0;
}

body {
    background-color: #1a0a3a;
}

h1 {
    border-bottom: 1px solid #8a8a8a;
}

.full-height {
    height: 100%;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    overflow: hidden;
    background-size: contain
}

.video-container > video {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@media screen and (max-aspect-ratio: 1920/1080) {
    .video-container > video {
        height: 100%;;
    }
}

@media screen and (min-aspect-ratio: 1920/1080) {
    .video-container > video {
        width: 100%;
    }
}

.title-container {
    border-bottom: 1px solid #8a8a8a;
    border-top: 1px solid #8a8a8a;
    padding-top: 8px;
    background-color: rgba(0, 0, 0, 0.6);

}

.title-container h1 {
    display: inline-block;
    font-style: italic;
    font-size: 3rem;
    font-weight: bolder;
    letter-spacing: 0.2rem;
    border: none;
}

.title-container img {
    width: 4rem;
    height: 4rem;
    margin: -10px 10px 10px 10px;
}

.page-container {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 20px
}

.product-text {
    padding-top: 1em;
}