@import 'https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap';

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: rgb(19, 19, 19);
    color: #fff;
    font-family: roboto mono, monospace
}

.top {
    text-align: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 400;
    color: #fff
}

.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%;
    filter: blur(25px);
    pointer-events: none;
}

.video-foreground::after {
    background-color: rgba(0, 0, 0, 0.418);
}

#vidtop-content {
    top: 0;
    color: #fff;
}



@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: .5rem;
    }

    .vid-info h1 {
        margin-bottom: .2rem;
    }
}

@media all and (max-width: 500px) {
    .vid-info .acronym {
        display: none;
    }
}

.red {
    color: rgb(255, 0, 212);
    text-shadow: 0px 0px 10px rgb(255, 0, 234);
}

.glow {
    text-shadow: 0px 0px 10px rgb(255, 0, 234);
}

.top a {
    font-size: 18px;
    padding: 6px;
    border-radius: 100%;
    cursor: pointer;
    transition: .2s;
    color: #fff
}

.top a:hover {
    font-size: 22px
}

.main {
    width: 450px;
    padding: 25px;
    text-align: right;
    color: #f7f7f7eb;
    letter-spacing: 1px;
    z-index: 9999;
    font-size: 13px
}

.small {
    color: #e8e8e899;
    font-size: .9rem
}

.divider {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin: 15px 0;
    font-size: 20px
}

.line {
    height: 1px;
    width: 100%;
    background-color: white;
    color: #fff
}

.after {
    display: none
}

.before {
    text-align: center;
    color: #fff;
    user-select: none;
    font-size: 12px;
    font-weight: 300
}