@font-face {
  font-family: crustaceans; /* set name */
  src: url(/assets/fonts/Crustaceans.otf); /* url of the font */
}

h1 {
  font-family: crustaceans;
  font-size: 4rem;
  margin: 10px;
}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 2.5rem;
    }
}