@font-face {
  font-family: "Futura";
  src: url("fonts/Futura Extra Black Condensed Regular.otf") format("opentype");
}

:root {
  --yellow: #f4c70f;
  --red: #b61b1c;
}

body {
  font-family: "Futura", sans-serif;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  padding: 0;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}

h1 {
  font-size: 10vw;
  margin: 0;
  padding: 0;
  cursor: default;
}

@keyframes blink {
  0% {
    color: var(--yellow);
  }
  50% {
    color: var(--red);
  }
  100% {
    color: var(--yellow);
  }
}

h1:hover {
  /* blink switch yellow and red */
  animation: blink 0.1s infinite;
}

nav {
  gap: 2rem;
  font-size: 2.5vw;
}

ul,
li {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  flex: 1;
}

li:first-child {
  justify-content: flex-start;
}

li:last-child {
  justify-content: flex-end;
}

a {
  text-decoration: underline;
  color: var(--red);
}

a:hover {
  color: var(--yellow);
}
