    
@font-face { font-family: "Rundschrift"; src: url('/fonts/VAGbold.otf') format("opentype");} 

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        scrollbar-color: var(--accent) white;
    }

    :root {
      --accent: #ffe4c4;
      --accent2: #c48329;
      --text: #7c6a48;
      --stats: #a7a08e;
      --dk-color: #dadada;
      --lt-color: #898992;
    } 
    body{
        font: 12px Verdana;
        color: var(--text);
        background-color: var(--accent);
    }
    main {
        position: absolute;
        right: 15vw;
    }

    .media-card {
        display: flex;
        gap: 15px;
        padding: 8px;
        margin-bottom: 30px;
        width: 700px;
        background-color: white;
    }
    .media-card:first-child{
        margin-top: 20px;
    }
    .media-card, nav, .popup, #s-m-t-tooltip {
        box-shadow: #00000021 2px 10px 14px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    }
    .media-card:hover .cover {
        filter:none;
        transition: 0.2s ease-in;
    }
    .cover {
        width: 140px;
        height: 140px;
        background-size: cover;
        filter:opacity(0.5);
        box-shadow: 0 0 5px 5px white inset;
        -webkit-transition : -webkit-filter 0.15s linear;    
    }    

    .info {
        width: 540px;
    }
    .infobox {
        max-height: 93px;
        overflow-y: auto;
        scrollbar-width: thin;
    }
    .infobox:before {
        content: "→ ";
        font-size: 10px;
    }
    .stats {
        color:var(--stats);
        user-select:none;
    }

    nav {
        font-size: 11px;
        text-align: center;
        background: white;
        padding: 10px 5px;
        z-index: 999;
        width: 220px;
        line-height: 15px;
        position: fixed;
        right: 50px;
        bottom: 20vh;
    }

    h2 button, nav button {
        background-color: #f4ece1;
        border-radius: 3px;
        border: 1px solid #c7b57a;
        box-shadow: rgba(255, 255, 255, .7) 0 1px 0 0 inset;
        box-sizing: border-box;
        color: #9d7539;
        cursor: pointer;
        display: inline-block;
        font-family: "Segoe UI";
        font-size: 13px;
        margin: 0;
        padding:2px;
        position: relative;
        text-align: center;
        text-decoration: none;
        user-select: none;
        -webkit-user-select: none;
        white-space: nowrap;
    }
    button:hover, button:focus {
        background-color: #ead9b3;
        color: #77572c;
    }
    summary {text-align: center;}

    h1, p {margin:0;}
    h2 {margin: 2px 0; 
        font-family: 'Rundschrift'; 
        letter-spacing: .5px; 
        line-height: 22px;
        display: flex;
        justify-content: space-between;
    }
    h2 button {
        height:21px;
        padding: 0px 4px;
    }
    a {
        color: var(--accent2);
        text-decoration: underline dashed;
    }

    .popup {
        position: fixed;
        top: 300px;
        left: 400px;
        width: 350px;
        background: black;
        color: var(--text);
    }
    .popup-header {
        font-size:11px;
        line-height:12px;
        height: 23px;
        padding: 5px;
        background: white;
        color: var(--accent2);
        cursor: move;
        display: flex;
        justify-content: space-between;
        text-transform: uppercase;
    }
    .popup-content {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .screenshot {
        width: 100%;
        max-height: 200px;
        object-fit: contain;
    }
    .arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        cursor: pointer;
        opacity: .50;
        border-radius: 5px;
    }
    .arrow.left { left: 5px; }
    .arrow.right { right: 5px; }
    .close-btn {
        background: none;
        border: none;
        cursor: pointer;
        font-size: 10px;
        color: var(--accent2);
    }

    #s-m-t-tooltip {
        background: white;
        max-width:300px;
        padding:4px 7px; /* space around the text */
        margin:15px 0px 0px 15px; /* positioning of your hover info in relation to the link */
        color:var(--text); /* text color */
        letter-spacing: 1px; /* optional letter spacing */
        z-index:999;
    }