body {
  margin: 0;
  padding: 0;
  background: whitesmoke;
}

a {
  line-height: 0;
  border-radius: 4px;
  box-sizing: border-box;
}
a:hover {
  background: #ddd;
}
a > img {
  width: 36px;
  height: 36px;
  padding: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

header {
  position: relative;
  height: 50vh;
  background: #000 url(img/bg.jpg) center/100% fixed no-repeat;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
header::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-backdrop-filter: blur(16px) brightness(0.8);
          backdrop-filter: blur(16px) brightness(0.8);
}
header > p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  z-index: 1;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 12vw;
  text-shadow: black 1px 1px 0, black 2px 2px 0, black 3px 3px 0, black 4px 4px 0, black 5px 5px 0, black 6px 6px 0, black 7px 7px 0, #ffffff 8px 8px 0;
}

main {
  padding: 32px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
main h1 {
  -webkit-user-select: all;
     -moz-user-select: all;
          user-select: all;
}
main > img {
  border: solid 1px #ddd;
  width: 40%;
  max-width: 180px;
}
main p {
  margin: 0;
  padding: 2em 0;
  font-size: large;
}
main > div {
  display: flex;
  gap: 4px;
  justify-content: center;
}/*# sourceMappingURL=style.css.map */