@font-face {
  font-family: "Anton";
  src: url("fonts/Anton/Anton-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat/Montserrat-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Montserrat", sans-serif;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  background-color: #fdf7df;
  margin: 0;
  min-height: 100vh;
}

.content {
  grid-column: 4 / 10;
}

.description-row {
  width: 80%;
  margin: 0 auto;
  align-items: left;
}

#name {
  font-size: 3rem;
}

#name.fish { color: #2a9d8f }
#name.egg {
  background: linear-gradient(90deg, #FF9505, #e7dac9);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#name.meat { color: #f63e02; }
#name.cheese { color: #f3b700; }
#name.salad { color: #A1C181; }
#name.sweet { color: #e4958d; }
#name.nut { color: #b87d4b; }
#name.canapes {
  background: linear-gradient(90deg, #f04208, #7106ed);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#name.miscellaneous {
  background: linear-gradient(90deg, #7106ed, #f04208);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

#type {
  color: white;
  padding: 0.5rem 1rem;
  font-weight: bold;
}

#type.fish { background-color: #2a9d8f; }
#type.egg { background: linear-gradient(90deg, #FF9505, #e7dac9); }
#type.meat { background-color: #f63e02; }
#type.cheese { background-color: #f3b700; }
#type.salad { background-color: #A1C181; }
#type.sweet { background-color: #e4958d; }
#type.nut { background-color: #b87d4b; }
#type.canapes { background: linear-gradient(90deg, #f04208, #7106ed); }
#type.miscellaneous { background: linear-gradient(90deg, #7106ed, #f04208); }

#title {
  font-size: 1.7rem;
}

header {
  padding-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sandwich-icon {
  height: 22em;
  width: auto;
}

footer {
  font-size: 0.8rem;
  padding-top: 2rem;
}

h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
}

a {
  color: black;
}

#refresh-button, #about-button, #home-button {
  position: fixed;
  left: 1rem;
  line-height: 1;
  border: none;
  background-color: #fdf7df;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  white-space: nowrap;
  font-weight: bold;
}

#refresh-button:hover, #about-button:hover, #home-button:hover {
  background-color: #f3e8b8;
}

#refresh-button {
  top: 1rem;
  font-size: 1.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 50%;
}

#about-button {
  top: 4.5rem;
  font-size: 1rem;
  padding: 0.5rem 0.9rem;
  border-radius: 1.5rem;
}

#home-button {
  top: 1rem;
  padding: 0.5rem;
  border-radius: 50%;
}

#home-button img {
  height: 2rem;
  width: 2rem;
}
