@font-face {
  font-family: "Fira Code";
  src: url("assets/FiraCode-Medium.ttf");
}

body {
  background-color: #282828;
  color: #ebdbb2;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 15vw;

  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spin {
  display: inline-block;
  animation: gear-rotation 4s linear infinite;
}

#gear {
  margin-left: 0.2em;
}

@keyframes gear-rotation {
  to {
    rotate: 360deg;
  }
}
