html,
body {
    height: 100%;
}

#splash {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #212529;
}

#splash img {
    min-width: 20vw;
    margin-bottom: 2vh;
}

#bg-video-container {
    width: 100%;
    height: 50vh;
    max-height: 50vh;
    overflow: hidden;
    margin-bottom: 2vh;
}

#bg-video {
    width: auto;
    height: 100%;
    max-width: 100%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

h2 {
    font-size: 2rem;
    color: white;
    margin: 0;
}