@font-face {
    font-display: swap;
    font-family: 'Telia Sans';
    font-style: normal;
    font-weight: 400;
    src: url("TeliaSans-Regular.woff2") format("woff2");
}

body {
    background-color: #181818;
    font-family: 'Telia Sans', monospace
}

.fullscreen {
    bottom: 0;
    display: grid;
    left: 0;
    right: 0;
    top: 0
}

.container {
    display: flex;
    flex-direction: column;
    margin: auto
}

h1 {
    font-size: 2.0em;
    font-weight: 600;
    text-align: center
}

#title {
    margin: 0 .8em
}

#bookmark-container {
    display: flex;
    flex-flow: row wrap;
    justify-content: center
}

.bookmark-set {
    background-color: #262626;
    border-radius: 20px;
    box-sizing: border-box;
    font-size: .85em;
    height: 1%;
    margin: .5em;
    min-width: 230px;
    overflow: auto;
    padding: 1em
}

.bookmark-title {
    color: #fff;
    font-weight: 600;
    font-size: 1.1em;
    margin: 0 0 .75em;
    text-align: left
}

.bookmark {
    color: #b3b3b3;
    display: block;
    margin: .5em 0;
    text-decoration: none
}

.bookmark:hover,
h1 {
    color: #fff
}

h2 {
    font-size: 0.8em;
    margin: auto;
    color: #fff;
    text-align: center
}

input {
    background-color: #262626;
    border-radius: 20px;
    border: 3px solid #262626;
    padding: 20px;
    width: 70%;
    height: 25px;
    margin: 10px auto;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    color: white;
}

.topnav {
    background-color: #333;
    overflow: hidden;
    border-radius: 5px;
}

.topnav a {
    float: left;
    color: #00da24c4;
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
    font-size: 17px;
    border-radius: 5px;
}

.topnav a:hover {
    background-color: #00ff15;
    transition: ease 0.3s;
    color: black;
}

.topnav a.active {
    background-color: #00da24c4;
    color: white;
}

.topnav a.fi {
    float: right;
}

@media screen and (min-width:70em) {
    html {
        font-size: calc(8px + (12 - 8)*(100vw - 300px)/(800 - 300))
    }
    /* Style the header */
    .header {
        padding: 10px 16px;
        background: rgb(220, 53, 69);
        color: #dc3545;
    }
    /* Page content */
    .content {
        padding: 16px;
    }
    /* The sticky class is added to the header with JS when it reaches its scroll position */
    .sticky {
        position: auto;
        top: 0;
        width: 100%
    }
    /* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
    .sticky+.content {
        padding-top: 102px;
    }
}