
body {
    font-family: monospace;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fafafa;
    background-color: #0e0e0e;
}

header,
main {
    max-width: 964px;
    margin: 0 auto;
}

header h1 {
    text-align: center;
}

header h1 a {
    color: #fafafa;
    text-decoration: none;
}

header h2 {
    font-size: 1.2rem;
}

.log-list {
    padding-left: 0;
    margin-left: 0;
}

.log-list li {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.log-link {
    text-decoration: none;
    font-weight: bold;
    color: #4c8bcf;
}

.log-footer {
    text-align: center;
    margin-top: 1.1rem;
}

.log-footer a {
    text-decoration: none;
    font-weight: bold;
    color: #fafafa;
}

.no-such-file-or-directory {
    text-align: center;
}

.log-list li a {
    display: inline-block;
}

.log-list li a:hover {
    animation: glitch 2s linear infinite;
}

a:hover::before {
    animation: glitchTop 3s linear infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

a:hover::after {
    animation: glitchBotom 1s linear infinite;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

@keyframes glitch {

    2%,
    64% {
        transform: translate(1px, 0) skew(0deg);
    }

    4%,
    60% {
        transform: translate(-1px, 0) skew(0deg);
    }

    62% {
        transform: translate(0, 0) skew(5deg);
    }
}

a:hover::before,
a:hover::after {
    content: attr(title);
    position: absolute;
    left: 0;
}

@keyframes glitchTop {

    2%,
    64% {
        transform: translate(2px, -2px);
    }

    4%,
    60% {
        transform: translate(-2px, 2px);
    }

    62% {
        transform: translate(3px, -1px) skew(-3deg);
    }
}

@keyframes glitchBotom {

    2%,
    64% {
        transform: translate(-2px, 0);
    }

    4%,
    60% {
        transform: translate(-2px, 0);
    }

    62% {
        transform: translate(-5px, 3px) skew(5deg);
    }
}