* {
    margin: 0;
    padding: 0;
}

.space-mono {
    font-family: "Space Mono", monospace;
}

main {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: none;
}

.crt-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1) hue-rotate(1deg);
    animation: crt-flicker 0.12s steps(1) infinite;
    position: relative;
}

.container::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/86186/crt.png');
    background-size: 100% 100%;
    opacity: 1;
}

.container {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-block {
    width: 425px;
    height: 425px;
    border-radius: 425px;
    backdrop-filter: blur(30px);
    background-color: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
}

#title {
    position: relative;
    transform: translateY(-200px) translateX(-10px);
}

#title span {
    font: 26px Monaco, MonoSpace;
    height: 200px;
    position: absolute;
    width: 20px;
    left: 0;
    top: 0;
    transform-origin: bottom center;
    color: #ffffff;
}

#logo {
    position: absolute;
    width: 60%;
    height: auto;
    transform: translateX(7px);
}

.external {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-container {
    backdrop-filter: blur(30px);
    background-color: rgba(0, 0, 0, .4);
    border-radius: 9999px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.link-container img {
    margin-bottom: -4px;
}

.link-container-middle {
    margin-right: 8px;
    margin-left: 8px;
}

@-webkit-keyframes rotating {
    from{
        -webkit-transform: rotate(0deg);
    }
    to{
        -webkit-transform: rotate(360deg);
    }
}

@keyframes crt-flicker {
    0%,19%,21%,23%,25%,54%,56%,100% { opacity: 1; }
    20%,24%,55%                     { opacity: 0.97; }
}

.rotating {
    -webkit-animation: rotating 60s linear infinite;
}

@media screen and (max-width: 700px) {
    .container-block {
        width: 300px;
        height: 300px;
        border-radius: 300px;
    }

    #title {
        transform: translateY(-140px) translateX(-10px);
    }

    #title span {
        font-size: 20px;
        height: 140px;
        width: 20px;
    }
}