body {
  background-color: #a023e6;
  margin: 0;
  overflow: hidden;
}

header {
  position: relative;
  height: 14vh;
  padding: 0;
  margin: 1vh 1vh;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(1, 1fr);
  justify-items: start;
  justify-content: start;
  align-items: start;
}

h1, h2 {
  font-family: 'Antarctica';
  font-size: 3rem;
  line-height: 1;
  margin: 0;
}

h1 {
  grid-column: 1 / span 6;
  color: #fff;
  font-variation-settings: 'wght' 800, 'wdth' 200;
}

h2 {
  grid-column: 8 / span 2;
  color: #fff;
  font-variation-settings: 'wght' 300, 'wdth' 10;


}

ul {
  padding: 0;
  margin: 1vh 1vh;
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(1, 1fr);
  justify-items: center;
  justify-content: end;
  align-items: end;
  font-family: 'Antarctica';
  line-height: 1;
  list-style-type: none;
  font-size: 5rem;
}

li {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  font-variation-settings: 'wght' 300, 'wdth' 30, 'ital' 0;
  color: #00f000;
  transition: all 0.2s ease-out;
  text-align: center;
  height: 14vh;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
  transform: scale(1);
}

li:hover {
  font-variation-settings: 'wght' 900, 'wdth' 100, 'ital' 12;
  color: #00f000;
  -webkit-text-stroke: 0px #00f000;
  transform: scale(1.5);
}

/* Links in der Liste */
ul li a {
  display: block;
  width: 100%;
  height: 100%;
  color: #00f000;
  text-decoration: none;
  -webkit-text-stroke: 1px #00f000;
}

ul li a:hover {
  text-decoration: none;
  -webkit-text-stroke: 1px #00f000;
  color: transparent;
}

ul li a:visited {
  color: transparent;
  text-decoration: none;
  -webkit-text-stroke: 1px #00f000;
}

#btn-field {
  text-decoration: none;
  grid-column: 8 / span 3;
  margin: 0 2vw;
  align-items: start;
  justify-items: start;
  justify-content: start;
  align-content: start;
  justify-self: end;
  align-self: start;
}

#artwork-btn {
  font-size: 1.5rem;
  font-family: 'Acumin';
  font-variation-settings: 'wght' 800, 'wdth' 50, 'slnt' 0;
  padding: 10px 20px 5px 20px;
  border: 3px solid #fff;
  text-transform: uppercase;
  background-color: transparent;
  border-radius: 40px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-out;
  
}

#artwork-btn:hover {
  background-color: #fff;
  color: #a023e6;
  font-variation-settings: 'wght' 800, 'wdth' 115, 'slnt' 12;

}
