@font-face {
  font-family: "NeueKabel";
  src: url("../fonts/NeueKabel-ExtraBold.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Andale Mono Regular";
  src: url("../fonts/ANDALEMO.woff");
  font-weight: normal;
  font-style: normal;
}

:root {
  --gutter-width: 15px;
  --color-text: #181818;
}

html {
  background-color: #ece9e1;
}

html,
body {
  -webkit-scroll-behavior: smooth;
  scroll-behavior: smooth;
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  background-image: url("../imgs/background.webp");
  background-repeat: repeat-y;
  background-size: 100%;
}

body {
  height: 100vh;
  height: fill-available;
  height: -webkit-fill-available;
}

html {
  height: 100vh;
  height: fill-available;
  height: -webkit-fill-available;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  font-family: "Andale Mono Regular", monospace;
  color: var(--color-text);
  font-weight: normal;
  margin: 0;
  padding: 0;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a,
a:visited,
a:active {
  text-decoration: none;
  color: currentColor;
}

h1 {
  font-size: 30px;
  letter-spacing: -1px;
  font-family: "NeueKabel", sans-serif;
}

h2 {
  font-size: 22px;
  font-family: "NeueKabel", sans-serif;
}

h3 {
  font-family: "NeueKabel", sans-serif;
  font-size: 15px;
  line-height: 1.1em;
  font-weight: normal;
}

p,
a {
  font-size: 15px;
  margin: 0;
}

/* Start coding here */

body::-webkit-scrollbar {
  width: 5px;
  background-color: #ece9e1;
}

body::-webkit-scrollbar-thumb {
  background-color: black;
  border-radius: 99px;
}

body {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}

header {
  position: fixed; /* Take it out of the flow of the document */
  left: 0; /* Left edge at left for now */
  right: 0; /* Right edge at right for now, so full width */
  top: 20px; /* Move it down from top of window */
  width: 290px; /* Give it the desired width */
  margin: auto; /* Center it */
  max-width: 100%; /* Make it fit window if under 500px */
  z-index: 999; /* Whatever needed to force to front (1 might do) */
  text-align: center;
}

#about {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 5rem;
  width: 290px;
  margin: auto;
  max-width: 100%;
  z-index: 2;
  text-align: center;
}

h1 > a {
  font-size: 30px;
  letter-spacing: -1px;
  font-family: "NeueKabel", sans-serif;
}

@media screen and (max-width: 750px) {
  body {
    padding: 4px;
  }

  h1 {
    font-size: 25px;
  }
}
