main {
    position: relative;
    padding: 60px;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
}
main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    display: block;
    background-image: url(https://upload.wikimedia.org/wikipedia/en/7/7a/Downtown_Wichita_at_Evening.jpg);
    background-size: cover;
    filter: blur(5px);
    transform: scale(1.02);
}
#video-container {
    background-color: var(--el-bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 10px 5px rgba(0, 0, 0, .2);
}
#video-container h2 {
    text-align: center;
    font-size: 1.4em;
}
iframe {
    width: 854px;
    height: 480px;
}
#video-info {
    background-color: var(--el-bg-color);
    padding: 5px 20px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 20px 10px 5px rgba(0, 0, 0, .2);
}
body > footer {
    margin-top: 0;
}