body { background: black; color: #eee; font-family: monospace; margin: 0; padding: 0; }
h1 { text-transform: uppercase; }
header {
  text-decoration: none;
  text-align: center;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 2;
  padding-bottom: 15px;
}
.logo { 
  display: inline-block;
  padding: 5px;
  color: white;
  text-transform: uppercase;
  font-size: 30px;
  font-family: "Press Start 2P", system-ui;
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: -10px;
  text-decoration: none;
}
header .link {
  display: inline-block;
  padding: 5px;
  text-decoration: none;
  color: white;
  border-color: black;
  border-bottom-style: solid;
  min-width: 110px;
}
header .link:hover {
  border-color: white;
  transform: scale(1.2, 1.2) rotate(2deg);
}
#hero {
  min-height: 600px;
  text-align: center;
  display: grid;
  place-items: center;
  font-size: 3em;
  position: relative;
  overflow: hidden;
  font-family: "Share Tech Mono", monospace;
  font-weight: 400;
}
#hero::before {
  content: '';
  position: absolute;
  background-image: url("img/background.jpeg");
  background-size: cover;
  background-position: center;
  inset: 0;
  z-index: 0;
  filter: blur(2px) brightness(60%);
}
#hero > * {
  position: relative;
  z-index: 1;
}
main {
  font-size: 24px;
  line-height: 140%;
  margin: 20px;
}

/* @media (max-width: 700px) {

} */