      * {
        --headheight: 12vh;
        --card: 18%;
      }
      
      
      html {
        background: /**/ url('https://i.imgur.com/Y58SdMT.gif'), var(--basecol);
        background-blend-mode: multiply;
        background-size: 300px;
        
        overflow: hidden;
      }
      
      header {
        width: 100%;
        height: var(--headheight);
        position: absolute;
        top:0;left:0;
        text-align: center;
        line-height: 15vh;
        font-family: var(--headerfont);
        font-size: 8vmin;
        
        color: var(--txt);
      }
      
      
      main {
        position: relative;
        top:var(--headheight); left:0;
        color: var(--txt);
        font-family: var(--mainfont);
      }
      
      
      
      section {
        width: 85%;
        max-height: 84vh;
        float: right;
        padding: 0 1% 1% 3%;
        display: flex;
        flex-wrap: wrap;
        font-family: var(--mainfont);
        overflow-Y: scroll;
        scrollbar-color: var(--c3) var(--c4);
      }
      
      
      a {
        width: auto; display: flex;
      }
      
      p {line-height: 1em;margin:2px;}
      
      .card {
        background: var(--cardcol);
        color: var(--cardtxt);
        padding: 2%;
        min-height: 50px;
        border: var(--border);
        border-radius: var(--borderRadius);
        width: var(--card);
        margin: 1% 0 2% 1.5%;
        position: relative;
      }
      
      .card img {
        width: 100%;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        border-radius: var(--borderRadius);
      }
      
      .card:hover {
        box-shadow: -3px 3px 0.3em rgb(0,0,0,0.4);
        cursor: pointer;
      }
      
      .card div {line-height: 1em;margin:0;}
      
      
      
      
      
/*dropdown--------------------------------------------*/      
      aside {
        width: 15%;
        height: calc(100% - var(--headheight));
        float: left;
        padding: 1%;
        position: static;
        color: var(--asidetxt);
        border-right: 2px solid var(--c2);
        font-size: 2vmin;
        overflow: visible;
        display:block;
      }
      
      .side {
        width: 100%;
        height: 20vmin;
        top: 0;
        position: sticky;
      }
      
      h1 {
        text-align: center;
      }
      
      .dropdown {
        padding: 2%;
        text-align: center;
        position: relative;
        background: var(--dropcol);
        border-radius: var(--borderRadius);
      }
      
      .select {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: background 0.3s;
        background: var(--selectcol);
        padding: 1em;
        border-radius: var(--borderRadius);
      }
      
      .select:hover {
        box-shadow: 0 0 0.2em black;
      }
      
      .select-clicked {
        box-shadow: 0 0 0.8em black;
      }
      
      .selected {
        color: var(--selectEDcol);
        border-radius: var(--borderRadius);
      }
      
      .caret {
        width: 0; height: 0;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 6px solid black;
        transition: 0.3s;
      }
      
      .caret-rotate {
        transform: rotate(180deg);
      }
      
      .menu {
        list-style-type: none;
        width: 100%;
        opacity: 0;
        display: none;
        transition: 0.2s;
        position: absolute;
        top: 3em;
        left:50%;
        transform: translateX(-50%);
        z-index:1;
        padding: 0.2em 0.5em;
        background: var(--menucol);
        color: var(--droptxt);
        border-radius: var(--borderRadius);
      }
      
      .menu li {
        list-style-type: none;
        cursor: pointer;
        padding: 0.7em 0.5em;
        margin: 0.3em 0;
        border-radius: var(--borderRadius);
      }
      
      .menu li:hover {
        box-shadow: 0 0 0.3em black;
      }
      
      .menu-open {
        display: block;
        opacity: 1;
      }
      
      .active {
        background: var(--activecol);
        color: var(--activetxt);
      }
      
      










