      * {
        --headheight: 12vh;
        --h1font: 5vh;
        --h2font: 2vh;
        --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;
        font-family: var(--headerfont);
        font-size: 8vmin;
        
        color: var(--txt);
      }
      
      h1 {font-size: var(--h1font); margin:2px;}
      h2 {font-size: var(--h2font);margin:1px;}
      
      
      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; text-decoration:none;
      }
      
      p {line-height: 1em;margin:2px;}
      
      .link {
        position: absolute;
        width: 100%; height: 100%;
        top:0;left:0;
        background: transparent;
      }
      .link:hover {
        background: white;
        opacity: 0.2;
      }
      
      .card div {display:flex; flex-wrap: wrap;}
      
      .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;
        display:flex; 
        flex-wrap: wrap;
      }
      
      
      .box {width: 100%; position: relative;}
      .box img {
        width:150%;
        position: absolute;
        top:0;
        left: 2%;
      }
      
      
      
/*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: var(--h2font);
        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);
      }
      
      
@media screen and (max-width: 600px) {
  aside {
    font-size: 2vw;
    width: 100%;
    padding-bottom: 5px;    
  }
  .side h1 {
    font-size: 5vw;
    text-align: left;
  }
  
  main {
    float: none;
    width: 100%;
  }
  
  .dropdown {
    width: 40%;
    font-size: 2vw;
  }
  
  .menu, .selected, .active, .select {
    --c2: rgb(203, 220, 178);
  }
  
  section {
    width:100%;
    padding-left:0;
  }
  
  .card {
    width: 47%;
    margin-left:0;
    font-size: 4vw;
  }
}









