@font-face {
    font-family: "Atkinson Hyperlegible Next";
    src: url("/fonts/AtkinsonHyperlegibleNextVF-Variable.woff2") format("woff2");
}

@font-face {
    font-family: "Atkinson Hyperlegible Mono";
    src: url("/fonts/AtkinsonHyperlegibleMonoVF-Variable.woff2") format("woff2");
}

body {
    background: #000000;
    background: linear-gradient(90deg,rgba(20, 20, 20, 1) 0%, rgba(25, 25, 25, 1) 25%, rgba(25, 25, 25, 1) 75%, rgba(20, 20, 20, 1) 100%);
    background-color: #191919;
    color: #ffffff;
    font-family:
        "Atkinson Hyperlegible Next",
        "Helvetica Neue",
        "Arial",
        "sans-serif";

    width: 100vw;
    overflow-x: hidden;
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

number {
    font-size: 24px;
    font-weight: 600;
    font-family:
        "Atkinson Hyperlegible Mono",
        "Courier New",
        "Courier",
        "monospace";
}

stats {
    font-size: 20px;
}

urlinfo {
    color: #aaaaaa;
    font-style: italic;
    font-size: 13px;
}

header {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 24px;
}

main {
    text-align: left;
    flex: 1;
    /*width: 50%;
    margin-left: 25%;*/
}

.page {
    width: 50%;
    margin-left: 25;
}

.external-link {
    width: 16px;
    height: 16px;
    position: absolute;
    margin-left: 4px;

    background-image: url("/assets/external-link.svg");
    background-size: contain;
}

.non-click-logo {
    width: 64px;
    height: 64px;

    background-image: url("/assets/jotslo-logo-transparent-small.png");
    background-size: contain;
}

.logo {
    width: 64px;
    height: 64px;

    background-image: url("/assets/jotslo-logo-transparent-small.png");
    background-size: contain;
    transition: backgzround-image 0.15s;
}

.logo:hover {
    background-image: url("/assets/jotslo-logo-transparent-small-hover.png");
}

@keyframes fadeRed {
    0% {
        color: #ed0c57;
        opacity: 1;
    }
    50% {
        color: black;
        opacity: 0;
    }
    100% {
        color: #ed0c57;
        opacity: 1;
    }
}

.live-symbol {
  animation: fadeRed 2s ease-in-out infinite;
}

/*html {
    scrollbar-gutter: stable both-edges;
}*/


nav ul li:not(:first-child)::before {
    content: "•";
}

h1 {
    margin-top: 56px;
    margin-bottom: 0px;
}

h2 {
    margin-top: 48px;
    margin-bottom: 0px;
}

.contact-header {
    margin-bottom: -10px;
}

a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.15s;
}

.description {
    color: #aaaaaa;
}

.active-url {
    color: #aaaaaa;
}

.content-url {
    color: #aaaaaa;
}

.footer-url {
    color: #aaaaaa;
}

a:hover {
    color: #ed0c57;
}

@media screen and (max-width: 700px) {
    .page {
        width: 90%;
        margin-left: 5%;
    }  
}

@media screen and (min-width: 701px) {
    .page {
        width: 600px;
        margin-left: calc((100% - 600px) / 2);
    }
}

footer {
    color: #aaaaaa;
    text-align: center;
    font-size: 12px;
    padding-top: 48px;
    padding-bottom: 16px;
}