:root{
    --bg: #00000 ;
    --water: #0071bc;
    --section: lightBlue;
    --blue:midnightBlue;
    --orange: rgb(255, 138, 96);
    font-family: arial;
  }
  *{
    box-sizing:border-box;
  }
  a{
    text-decoration: none;
    color: white;
  }
  a:hover{
    cursor: alias;
    color:var(--orange);
    font-weight: 100;
  }
  a:active{
    color: var(--section);
  }
  img,video{
    position: relative;
    height:auto;
    width:100%;
    object-fit: cover;
  }
  body{
    min-height:100vh;
    margin:0;
    max-height:100vh;
    overflow:scroll;
    scroll-behavior: smooth;
    background-color:var(--bg);
    display: grid;
  }
  body > section{
    scroll-margin-top: 2vh;
    scroll-snap-align: start;
    scroll-snap-type: proximity;
  }
   /*top progress bar*/
   #progress-container {
    z-index: 14;
    height: 1vh;
    width: 100%;
    background-color: var(--water);
    position: fixed;
    top: 0;
    left: 0;
  }
  #progress {
    z-index: 15;
    height: 1vh;
    width: 0%;
    background-color: var(--orange);
    position: fixed;
    top: 0;
    left: 0;
    /*animation: progress linear;
    animation-timeline: scroll(root y);*/
  }
  @keyframes progress {
    to {
      background-color: orangeRed;
      width: 100%;
    }
  }
  .logo{
    z-index:3;
    width: 12vw;
    object-fit: cover;
  }
  .nav{
    padding: 0 28px;
    box-shadow:   var(--section) 0 2px 20px 2px;
    position: -webkit-sticky;
    position:sticky;
    top:0;
    display: flex;
    align-items:flex-end;
    justify-content: space-between;
    column-gap: 1em;
    z-index:10;
    height: fit-content;
    background-color:var(--blue);
    font-size: max(1.6vw, 12px);
    color: white;
  }
  .link{
    display: flex;
    column-gap: 2em;
  }
  .nav h2{
    position: relative;
    padding-top: 1.5vh;    
    font-size: 2vh;
  }

  .upper,.marquee{
    z-index: 3;
    background-color: white;
    height: 4vh;
    color: var(--blue);
    font-size: 16px;
    justify-content: flex-end;
    align-items:center;
  }
  


  /*content*/
  section{
    width: 100vw;
    height: fit-content;
    background-color: var(--bg);
    overflow-y:scroll;
    overflow-x: hidden;
    position: relative;
    scrollbar-width: none;
  }
  .hero{
    height: 100vh;
  }
  h1{
    padding: 0 4vw;
    z-index: 5;
    font-family: "montserrat", 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: min(8vh, 8vw);
    color: var(--blue);
    place-self: center;
  }
  p{
    padding: 0 1vw;
    font-size: min(3vw, 18px);
    justify-self: start;
  }
  .block{
    z-index:1;
    text-wrap:pretty;
    background-color: var(--orange);
    color: var(--blue);
    width: 100vw;
    padding: 4vh;
  }
  .block h2{
    font-size: max(3vh, 2.4vw);
    padding: 0 4vw;
  }
  .data,.game, .ctx{
    background-color: var(--section);
    width:100vw;
    height: fit-content;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;    
    scrollbar-width: none;
  }
 
  .click1:hover, .click2:hover{
    cursor: pointer;
  }
 
  .light{
  width: max(30vw, 30vh);
  aspect-ratio: 1 / 1 ;
  background-image: url(resources/snowflake.svg);
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--section) 0 0 18px 18px;
  transition: 2s ease-in;
  }
  .draggable{
    position: absolute;
    bottom: 0;
    width: 30%;
  }
  .draggable:hover{
    cursor: grab;
}
 
.game{
  background: linear-gradient(90deg, rgb(255, 138, 96) 0%,lightblue 100%);  
  padding: 8vh;
  display: grid;
  place-items: center;
}
.arrange{
  height: 100vh;
  width: 100vw;
}
.dark{
  background-color: black;
}
.dial{
  width: max(40vw, 40vh);
  transition: 2s ease-in;
}
.rotate{
  rotate: 180deg;
  transform-origin: 70%;
}

.penguin{
  height: 20%;
  width: max-content;
}
.icon{
  height: 10%;
  width: max-content;
}