html {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Syne", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  color: #000000;
  background-color: #ffffff;
  line-height: 1.5rem;
  margin: 0;
  padding: 2.5rem;
  box-sizing: border-box;
  height: 100dvh;
  width: 100vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: 1fr auto 1fr;
  grid-template-areas:
    "symbol . vatnumber"
    ". wordmark ."
    "description . contact";
}

a,
a:visited {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
}

a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: underline dotted;
}

#symbol {
  grid-area: symbol;
  display: flex;
  justify-content: start;
  align-items: start;
}

#symbol svg {
  height: 5rem;
}

#vatnumber {
  grid-area: vatnumber;
  display: flex;
  justify-content: end;
  align-items: start;
  color: #767676;
  font-size: 0.75rem;
}

#wordmark {
  grid-area: wordmark;
  display: flex;
  justify-content: center;
  align-items: center;
}

#wordmark svg {
  height: 5rem;
}

#description {
  grid-area: description;
  display: flex;
  justify-content: start;
  align-items: end;
}

#contact {
  grid-area: contact;
  display: flex;
  justify-content: end;
  align-items: end;
}

@media (max-width: 880px) {
  body {
    grid-template-columns: 100%;
    grid-template-rows: 2fr auto auto auto 1fr;
    grid-template-areas:
      "symbol"
      "wordmark"
      "description"
      "contact"
      "vatnumber";
    justify-items: start;
  }
  #symbol {
    padding: 0;
  }
  #wordmark {
    padding: 2.5rem 0 2.5rem 0;
  }
  #description {
    padding: 0 0 2.5rem 0;
  }
  #contact {
    padding: 0;
  }
  #vatnumber {
    align-items: end;
    padding: 2.5rem 0 0 0;
  }
  .wide {
    display: none;
  }
}
