@font-face {
    font-family: 'Routed Gothic';
    src: url(routed-gothic.ttf) format(TrueType);
    font-style: normal;
}

@font-face {
    font-family: 'Routed Gothic';
    src: url(routed-gothic-italic.ttf) format(TrueType);
    font-style: italic;
}

:root {
    font-size: 28px;
    line-height: 1.125em;
    font-family: 'Routed Gothic', sans-serif;
    --magenta: rgb(255, 0, 120);
}

body {
    margin: .5rem;
}

main {
    display: flex;
    gap: .5rem;
}

main>.col {
    flex: 1;
    height: calc(100vh - 1rem);
    overflow-y: scroll;
}

h2 {
    font-size: 1rem;
    font-weight: normal;
    font-style: italic;
    line-height: 1.125em;
    margin: 0 0 .5rem 0;
}

p {
    margin: 0 0 1rem 0;
}

a {
    text-decoration: none;
    color: var(--magenta)
}

a:hover {
    display: inline-block;
    animation: wiggle 0.5s infinite;
}

@keyframes wiggle {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }

    10% {
        transform: translate(-1px, -2px) rotate(-1deg);
    }

    20% {
        transform: translate(-3px, 0px) rotate(1deg);
    }

    30% {
        transform: translate(3px, 2px) rotate(0deg);
    }

    40% {
        transform: translate(1px, -1px) rotate(1deg);
    }

    50% {
        transform: translate(-1px, 2px) rotate(-1deg);
    }

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

    70% {
        transform: translate(3px, 1px) rotate(-1deg);
    }

    80% {
        transform: translate(-1px, -1px) rotate(1deg);
    }

    90% {
        transform: translate(1px, 2px) rotate(0deg);
    }

    100% {
        transform: translate(1px, -2px) rotate(-1deg);
    }
}

.important {
    color: var(--magenta)
}

#imprint {
    display: none;
}

.zigzag {
    position: fixed;
    width: 3.75rem;
    height: 100vh;
    top: 0;
    background-image: url(zigzag.svg);
    background-size: contain;
    background-repeat: repeat-y;
    padding: 0 0 100vh 0;
    margin: 0 0 -100vh 0;
}

.zigzag.left {
    left: .25rem;
}

.zigzag.right {
    right: .25rem;
    background-position: right 0 top 16rem;
}

@media (max-width: 975px) {
    main {
        flex-direction: column;
    }
}