@import url(https://fonts.googleapis.com/css?family=VT323);

body {
    background: #141414;
    font-family: 'VT323', sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    user-select: none;
    cursor: crosshair;
    letter-spacing: 1px;
}

.links-container a:visited {
    color: #e8ff67;
}

.watermark {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
    pointer-events: none;
    opacity: 0.5;
}

#objdump {
    margin: 0;
    font-size: 100px;
    white-space: pre;
    color: #a2afa2;
    text-shadow: 0rem 0.2rem 1rem;
    line-height: 1.1;
}

.container {
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    box-sizing: border-box;
}

.links-container {
    font-size: 30px;
    text-align: center;
    white-space: pre-line;
    line-height: 1.4;
    text-shadow: 0rem 0.2rem 1rem;
    position: relative;
    padding: 0 10rem;
    color: #3259c5;
}

canvas {
    pointer-events: none;
}

.links-container a {
    color: #a2afa2;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-shadow: 0rem 0.2rem 1rem;
    position: relative;
    animation: glow 3250ms infinite ease;
}

.links-container a:hover {
    transform: translateY(-2px);
    text-shadow: 3rem;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 0.35;
    }
}

@media (max-width: 768px) {
    .watermark {
        top: 10px;
        right: 10px;
    }

    #objdump {
        font-size: 70px;
    }

    .links-container {
        font-size: 30px;
        padding: 0 9rem;
    }
}

@media (min-width: 1800px) {
    .container {
        padding: 0 40rem;
    }
}
