link-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  background-color: black;
}
link-list a {
  text-decoration: none;
  color: white;
  margin: 0 10px 0 10px;
}
link-list button {
  display: none;
}
link-list ham-list {
  display: block;
  position: fixed;
  top: 0;
  background-color: black;
  width: 100vw;
  height: 100vh;
  z-index: 1;
}
link-list ham-list div {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: end;
}
link-list ham-list div button {
  color: white;
  font-weight: bold;
  font-size: large;
  margin: 10px;
}

/*link-list.open {
	ham-list {
	}
}*/
@media screen and (max-width: 500px) {
  link-list {
    justify-content: end;
    width: 100%;
  }
  link-list a {
    display: none;
  }
  link-list ham-list a {
    display: block;
    color: white;
    width: 95%;
    padding-left: 5%;
    margin: 5px 0 5px 0;
  }
  link-list button {
    display: block;
    background-color: transparent;
    border: none;
    margin-right: 10px;
  }
}
@media screen and (min-width: 500px) and (max-width: 1030px) {
  link-list {
    justify-content: end;
    width: 100%;
  }
  link-list a {
    display: none;
  }
  link-list ham-list a {
    display: block;
    color: white;
    width: 95%;
    padding-left: 5%;
    margin: 5px 0 5px 0;
  }
  link-list button {
    display: block;
    background-color: transparent;
    border: none;
    margin-right: 10px;
  }
}/*# sourceMappingURL=link_list.css.map */