      html, body, div, span,
      h1, h2, h3, h4, h5, h6,
      p, a,
      img,
      ol, ul, li,
      form,
      article, 
      footer, header,
      menu, nav, button, button:focus {
        margin: 0;
        padding: 0;
        border: 0;
        outline: 0;
        font-size: 100%;
        font: inherit;
        vertical-align: baseline;
        font-weight: normal;
        cursor: default;
        box-sizing: border-box;
        background-repeat: no-repeat;
      }


body {
  margin: 0; /* Remove default body margin */
  background-image: url("../img/Klamoth.jpg");
  background-size: cover; /* Ensures the image covers the entire area, maintaining aspect ratio */
  background-position: center center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents image repetition */
  background-attachment: fixed; /* Keeps the background fixed during scroll */
  height: 100vh; /* Ensures the body takes up the full viewport height */
}

div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1, h2 {
  color: #2D343C;
  text-align: center;
  letter-spacing: 0px;
}

h1 {
  font-family: "Archivo Black", sans-serif;
  font-weight: 300;
  font-style: normal;
  padding-top: 22vh;
  font-size: 36px;
}

h2 {
  font-family: "Lexend", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  padding-top: 26px;
}