@import url("./reset.css");
@import url("./fonts.css");

body {
  width: 100vw;
  min-height: 700px;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  font-size: 1rem;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background-color: #efcc64;
  transition: all 0.6s ease-out;

  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for Chrome, Safari and Opera */
  &::-webkit-scrollbar {
    display: none;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
span,
mark,
b {
  cursor: default;
}
