@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  height: 100%;
  display: flex;
  gap: 2em;
  flex-direction: column;
  padding: 2em;
  background-color: black;
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
}

nav {
  text-align: right;
  align-self: end;
  justify-content: end;
  display: flex;
  display: -webkit-flex;
  flex-direction: row;
  gap: .5em;
  margin-left: auto;
}

nav a {
  color: inherit;
  font-size: 2em;
}

nav img, nav a img {
  max-height: 30px;
}

#brand {
  max-width: 540px;
}

img {
  max-width: 100%;
}

main {
  text-align: center;
  flex: 1;
  display: flex;
  gap: 4em;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
  align-self: center;
  max-width: 1080px;
}

a.contact {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  border: 1px solid white;
  padding: .5em 1em;
  border-radius: 2em;
  transition: all 0.25s;
  width: fit-content;
}

a.contact:hover {
  background-color: white;
  color: black;
}

footer {
  margin-top: auto;
  align-self: center;
  font-size: 0.75em;
}

div.ident {
  width: 100%;
  height: 100%;
  background-image: url("https://raw.githubusercontent.com/gist/thomasmcnaught/c51e074d3a6b30cd6c54f8b831513786/raw/674f91b0f36be2ae64b05666f79f295c474db630/vp-cut.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -999;
}