@import url("https://use.typekit.net/nnt5mhf.css");
html, * {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: alternate-gothic-no-2-d, sans-serif;
  text-transform: uppercase;
  text-rendering: optimizeSpeed;
  text-rendering: optimizeLegibility;
}

.container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3c413c;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.container div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container h1 {
  font-size: 3rem;
  color: #f7dcb3;
  margin: 1.5rem 0 2rem;
}
.container h5 {
  font-size: 1.2rem;
  display: flex;
  color: #f7dcb3;
  margin: 1.5rem 0 2rem;
}

ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-height: 100vh;
  justify-content: center;
}
ul li {
  list-style: none;
  margin: 1rem .75rem;
  padding: 0;
}
ul li a {
  color: #f7dcb3;
  color: #d2926e;
  color: #ffffff;
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: 3px;
  padding: 1.5rem 3rem 1.25rem;
  display: block;
  border: solid 2px #d2926e;
  text-decoration: none;
}
ul li a:hover {
  background: #563e1a;
  background: #f7dcb3;
  color: #d2926e;
  border: solid 2px #f7dcb3;
}

.logo {
  width: 6rem;
  height: 6rem;
  margin-bottom: 2rem;
  background-image: url("./images/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}