      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/lb-parrot-london.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, a {
  font-family: "Bayon", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: white;
  text-align: center;
  letter-spacing: 0.9px;
}

a {
  text-decoration: none;
  margin-top: 140px;
  font-size: 16px;
  background-image: url(../img/icon-insta.png);
  background-repeat: no-repeat;
  background-position: center left;
  background-size: 32px;
  display: block;
  padding: 5px 8px 2px 35px;
  font-weight: normal;
}

a:hover {
  border-bottom: 1.25px solid white;
  cursor: pointer
}

h1 {
  padding-top: 20vh;
  font-size: 38px;
}

h2 {
  font-size: 24px;
}