.email-obfuscation {
  display: none;
}

#email {
  margin-bottom: 0.3rem;
}

.contact {
  letter-spacing: 1px;
  font-weight: 500;
  text-align: center;
}

.contact p:hover {
  transform: rotate(-1deg) scale(1.1);
  transition: all 0.4s;
}

.contact p {
  transition: all 0.2s;
}

#km-container {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-evenly;
  gap: 0.5rem;
}

#newsletter {
  flex: 0 1 auto;
}

.km {
  min-width: 2rem;
  max-width: 4rem;
  height: auto;
  flex: 0 2 auto;
  object-fit: contain;
}

figure {
  margin-block: 6rem;
}

.credits {
  text-align: center;
}

.credits p {
  margin-block: 0;
  font-size: 90%;
  font-weight: 300;
}

#newsletter::before {
  content: ">";
}

#newsletter::after {
  content: "<";
}

@media (min-width: 32rem) {
  #newsletter::before {
    content: ">>> ";
  }

  #newsletter::after {
    content: " <<<";
  }
}