body {
    background: black;
    padding:0;
    margin:0;
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display:flex;
    flex-direction: column;
    color: #fff;

    font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  align-items: center;
}

#logo {
    aspect-ratio: 0.822;
    background: white;
    width: 120px;
    flex-grow: 0;
    flex-shrink: 0;
    mask: url(titlecard.webp);
    mask-size: contain;
    mask-repeat: no-repeat;
    /* position: absolute; */
    mix-blend-mode: exclusion;
}

#video-container {
    width: 100%;
    aspect-ratio: 2.2;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-grow: 0;
    flex-shrink: 0;
    position: relative;
    max-width: 1200px;
}

#video-container video {
    width: 100%;
    object-fit: cover;
    height: 100%;
    position: absolute;
}

#header, #footer {
    display:flex;
    flex-grow: 1;
    min-height: 145px;
    padding: 20px 0;
    text-align: center;
    justify-content: center;
}

#header {
    align-items: end;
    
}

#footer {
    font-size: 18px;
}

#footer p {
    margin:0;
    padding:0;
}

a {
    color: #fff
}