/* * {
    box-sizing: border-box;
}*/

video {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
}

.video-background {
    background: #000;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -99;
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}
@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}
@media all and (max-width: 600px) {
    .vid-info {
        width: 50%;
        padding: 0.5rem;
    }
    .vid-info h1 {
        margin-bottom: 0.2rem;
    }
}
@media all and (max-width: 500px) {
    .vid-info .acronym {
        display: none;
    }
}

html, body {
    height: 100%;
}
html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
    font-size: 150%;
    line-height: 1.4;
}
body {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
}

.viewport-header {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    font-family: 'Syncopate', sans-serif;
    color: #fff;
    text-shadow: 4px 4px 8px #555;
    text-transform: uppercase;
    letter-spacing: 3vw;
    line-height: 1.2;
    font-size: 3vw;
    text-align: center;
    span {
        display: block;
        font-size: 10vw;
        letter-spacing: -1.3vw;
    }
}

main {
    background: rgba(0, 0, 0, 0.66);
    color: white;
    position: relative;
    padding: 1rem;
    p {
        max-width: 600px;
        margin: 1rem auto;
    }
}

.main-layout {
    max-width: 1200px;
    display: grid;
    grid: repeat(3, 1fr) / repeat(3, 1fr); 
    align-self: center;
    justify-self: center;
    align-items: center;
    justify-items: center;
    img {
        margin: 1rem auto;
    }
}

p.left {
    grid-column: 1 / span 2;
}

p.right {
    grid-column: 2 / span 2;
}

footer {
    text-align: center;
}

.footer-layout {
    display: grid;
    grid: 1fr / repeat(5, 1fr);
    max-width: 1400px;
    align-self: center;
    justify-self: center;
    align-items: center;
    justify-items: center;
}