/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: var(--accent); 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent); 
  }

h1 , h2 , h3  {
    font-family: "Montserrat", sans-serif;
}

h1 { font-size: 50px; }

#splash { font-size: 24px; }

p { font-size: 20px; }

h1 > span {
    font-family: "Montserrat", sans-serif;
    color: var(--accent);
}
  
  #frame {
    width: 100%;
    height: 100%;
    background-color: white;
  }

  .frame {
  border-radius: 5px;
  background-color: white;
  display: block;
  margin: auto;

  border: none;
  
  height: calc(100vh - 80px);
  width: calc(100vw - 1px);
}