.credit-video-container {
    /* force full width */
    width: 100%;
    height: 100vh;

    /* temporary css */
    background-color: var(--section-4-secondary);
    
}

.credit-video-container > video {
    
    /* make video width 100% of viewport */
    width: 100%;
    height: auto;
    /* center video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.article-body {
    padding-top: 50px;
    padding-bottom: 50px;
}

