/* -- MENU overlay -- */
.rare_beast {
  font-family:var(--font-mono);
  line-height:.65;
}
.copy {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 2em;
    color: var(--color-light);
    z-index: 3;
    align-items: center;
}


.copy div p {
  font-size: 11px;
  line-height: 1.1;
  color: inherit;
  text-transform:uppercase;
}


.copy div:first-child {
  text-align: left;
  width: 15vw;

}

.copy div:nth-child(2) {
  text-align: center;
  width: 33.333333vw;
  font-family: var(--font-serif);
  
}


.copy div:last-child {
  text-align: right;
  width: 15vw;

}

@media  only screen and (max-width:600px) {
  .copy {
    padding: 1rem;
  }
  .copy div:first-child {
    text-align: left;
    width: 0vw;
    visibility: hidden;
  }
  
  .copy div:nth-child(2) {
    text-align: center;
    width: 60vw;
    font-family: var(--font-serif);
  }
  
  .copy div:last-child {
    text-align: right;
    width: 0vw;
    visibility: hidden;
  }

  .copy div p {
    font-size: 10px;
    line-height: 1.2;
}

}

.menu {
  width: calc(100vw / 2.5);
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 10% 10% 30% 40% 10%;
  grid-template-rows: 13px 13px;
  grid-gap: 0;
  align-self: center;
  justify-content: center;
  margin-bottom: 2rem;
  z-index: 99;
}

.item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0;
  font-size: 1em;
}
.item a {
  height:100%;
  width: 100%;
}

.a {
  background: var(--color-light);
  transition: background .5s ease-in-out;
}
.a:hover {
  background: #ECE154;
}

.b {
  background: var(--color-light);
  transition: background .5s ease-in-out;
}
.b:hover {
  background: #2AABC0;
}
.c {
  background: var(--color-light);
  transition: background .5s ease-in-out;
}
.c:hover {
  background: #E14C15;
}
.d {
 background: var(--color-light);
  transition: background .5s ease-in-out;
}
.d:hover {
  background:#0067DC;
}

.e {
  background: var(--color-light);
  transition: background .5s ease-in-out;
}
.e:hover {
  background: #EFB440;
}

.f {
  background: var(--color-light);
  transition: background .5s ease-in-out;
}
.a {
  grid-row: 1;
  grid-column: 1;
}
.b{
  grid-row: 2;
  grid-column: 2;
}
.c {
  grid-row: 1;
  grid-column: 3;
}
.d {
  grid-row: 2;
  grid-column: 4;
}
.e {
  grid-row: 1;
  grid-column: 5;
}
.f {
  grid-row: 2;
  grid-column: 6;
}


@media  only screen and (max-width: 600px) {
  .menu {
    width: calc(100vw / 1.2);
    margin-bottom: 2rem;
  }

}


.copy2 {
    position: fixed;
    top: 0;
    width: 100vw;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 2em;
    color: var(--color-light);
    z-index: 3;
    align-items: center;
}


.copy2 div p {
  font-size: 11px;
  line-height: 1.1;
  color: inherit;
  text-transform:uppercase;
}


.copy2 div:first-child {
  text-align: left;
  width: 15vw;

}

.copy2 div:nth-child(2) {
  text-align: center;
  width: 33.333333vw;
  font-family: var(--font-serif);
  
}


.copy2 div:last-child {
  text-align: right;
  width: 15vw;

}

@media  only screen and (max-width:600px) {
  .copy2 {
    padding: 1rem;
  }
  .copy2 div:first-child {
    text-align: left;
    width: 0vw;
    visibility: hidden;
  }
  
  .copy2 div:nth-child(2) {
    text-align: center;
    width: 60vw;
    font-family: var(--font-serif);
  }
  
  .copy2 div:last-child {
    text-align: right;
    width: 0vw;
    visibility: hidden;
  }

  .copy2 div p {
    font-size: 10px;
    line-height: 1.2;
}

}