html {
  box-sizing: border-box;
  height: 100%;
}
*,
*::after,
*::before {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

a {
  text-decoration: none;
  border: none;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Monserrat";
  letter-spacing: 6%;
}

@media screen and (max-width: 1200px) {
  body::before {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 10px;
    right: 10px;
    border-left: 1px solid rgb(204, 85, 32);
    border-right: 1px solid rgb(204, 85, 32);
    pointer-events: none;
  }
}

.wrapper {
  max-width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
