:root{
    --bg:#fff;
    --ink:#1f1a17;
    --red:#e4575e;
    --hotpink:#ff6fae;
    --yellow:#ffd37a;
    --teal:#91ddcf;
    --cornflower:#7c93e6;
    --chartreuse:#e1e27e;
}

html,body{
    margin:0;
    width:100%;
    height:100%;
    overflow:hidden;
    background:var(--bg);
    font-family:Georgia,"Times New Roman",serif;
    overscroll-behavior: none;
}


::selection {
  background: #fff;
  color: var(--teal);
}

a{
    color:var(--ink);
    transition:opacity .8s ease;
}

a:hover{
    opacity:.35;
}


.scroll {
  overflow: auto;


  scrollbar-width: none;


  -ms-overflow-style: none;
}


.scroll::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}
