header {
  position: sticky;
  top: 0;
  z-index: 100;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

#header-line {
  background-color: #757575;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0.8;
}

#header-logo {
  text-decoration: none;
  display:inline-block;
}

#header-logo img{
  width: 40px;
}

#header-chara {
  font-family: Tahoma, sans-serif;;
  font-weight: bold;
  color: white;
  font-size: 40px;
  vertical-align: 10%;
}

header button{
  text-decoration: none;
  background-color: transparent;
  color: white;
  border: none;
}

#main-nav > ul{
  display: flex;
  gap: 2.5rem;
  list-style: none;
  padding-right: 20px;
}

#main-nav a{
  font-family: Tahoma, sans-serif;;
  color: white;
  text-decoration: none;
}

#menu-panel a{
  font-family: Tahoma, sans-serif;;
  color: white;
  text-decoration: none;
  font-size: large;
}

#menu-panel {
  opacity: 0.8;
  background-color: black;
  /* opacity: 0.8; */
  position: fixed;
  top: 0;
  right: 0;
  translate: 100vw;
  width: 400px;
  height: 100vh;
}

#menu-panel li {
  opacity: 0;
  margin-top: 30px;
  text-decoration: none;
}

#menu-close {
  width: 100%;
  text-align: right;
  /* padding: 20px; */
}

#menu-close button{
  width: 50px;
  margin: 15px 25px;
}


@media (max-width:800px) {
  #header-wrap {
  display: block;
}
  #main-nav {
  align-items: center;
}
}