/* Import example: @use "_forms" */
* {
  box-sizing: border-box;
}

html {
  color: #000000;
  font: calc(1vw + 30px) monospace;
  line-height: 1.4;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 1rem;
  background: linear-gradient(180deg, rgb(255, 255, 250) 0%, rgb(255, 255, 250) 7.692%, rgb(255, 255, 240) 7.692%, rgb(255, 255, 240) 15.385%, rgb(255, 245, 230) 15.385%, rgb(255, 245, 230) 23.077%, rgb(251, 235, 220) 23.077%, rgb(251, 235, 220) 30.769%, rgb(245, 225, 211) 30.769%, rgb(245, 225, 211) 38.462%, rgb(238, 215, 202) 38.462%, rgb(238, 215, 202) 46.154%, rgb(232, 206, 194) 46.154%, rgb(232, 206, 194) 53.846%, rgb(226, 198, 186) 53.846%, rgb(226, 198, 186) 61.538%, rgb(220, 189, 179) 61.538%, rgb(220, 189, 179) 69.231%, rgb(214, 181, 172) 69.231%, rgb(214, 181, 172) 76.923%, rgb(208, 174, 166) 76.923%, rgb(208, 174, 166) 84.615%, rgb(202, 168, 162) 84.615%, rgb(202, 168, 162) 92.308%, rgb(197, 162, 157) 92.308% 100%);
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
  font-size: 0.9rem;
  gap: 0.6rem;
  padding: 0.6rem;
  min-height: 2.6rem;
  width: 100%;
  border-bottom: 5px dashed #b02414;
}
nav a {
  font-family: "Tiny5";
  text-decoration: none;
  color: #b02414;
  transition: scale 0.2s ease, font-weight 0s ease;
}
nav a:hover {
  scale: 1.06;
  font-weight: 600;
}

.intro {
  margin: 0.7rem 0 4rem 0;
  text-align: center;
}
.intro h1 {
  font-family: "Tiny5";
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1.2;
  color: #d81600;
  text-shadow: 0.1rem 0.1rem #000000;
}

.description {
  margin-bottom: 4rem;
}
.description h2 {
  font-family: "Tiny5";
  font-size: 1.4rem;
  color: #b02414;
  margin: 1.8rem 0 0.3rem 0;
  text-align: center;
}
.description p {
  font-size: 0.8rem;
}

@media (width <= 35rem) {
  nav {
    font-size: 1.1rem;
  }
}/*# sourceMappingURL=style.css.map */