@font-face {
    font-family: herbik;
    src: url(font/Herbik-Regular.otf);
  }
  
  @font-face {
    font-family: herbik;
    src: url(font/Herbik-RegularItalic.otf);
    font-style: italic;
  }

  :root{
    --bg : rgb(240, 239, 218);
    --nd : black;
    --rd : rgb(255, 255, 255);
  }
  
  body{
    background-color: var(--bg);
    font-family: herbik;
    overflow-x: hidden;
    font-size: 17px;
  }
  
::selection{
  background-color: black;
  color: var(--bg);
}

@media (orientation:portrait){
  html{
    font-size: 13px;
  }
  

}