@charset "UTF-8";
@font-face {
  font-family: "Neue Machina";
  src: url("/PPNeueMachina.woff2");
}
body {
  margin: 0;
  padding: 0;
  font-family: "Neue Machina", sans-serif;
  font-size: clamp(10px, 5vw, 30px);
  margin-bottom: 60vmin;
  background-color: whitesmoke;
}

#marquee {
  display: block;
  padding: 0.5rem;
  background-color: red;
  color: white;
  font-weight: bold;
  font-size: max(1.5vw, 10px);
  overflow: hidden;
  text-wrap: nowrap;
  text-decoration: none;
}
#marquee div {
  animation: scroll-left 30s linear infinite;
  text-wrap: nowrap;
}

main, nav {
  width: 90%;
  margin: auto;
  margin-top: 2em;
  margin-bottom: 2em;
  line-height: 1.15;
}

#mail {
  display: block;
  position: fixed;
  bottom: 0;
  right: 0;
  line-height: 0;
}
#mail img {
  height: 50vmin;
}

h2 {
  font-size: 1em;
}

h2::before {
  content: "✻ ";
}

em {
  font-style: normal;
  font-variation-settings: "ital" 100;
}

nav {
  font-size: 0.75em;
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
}
nav a {
  text-wrap: nowrap;
}

@keyframes scroll-left {
  0% {
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -moz-transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=style.css.map */
