header {
  display: flex;
  position: fixed;
  width: 100%;
  height: 9vh;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
  box-shadow: 1px 1px 2px;
  background-color: white;
}
header > a > img {
  height: 9vh;
}
header > nav {
  display: flex;
}
header > nav > a, header > nav > p {
  display: none;
}
header > menu {
  padding: 10px;
}
header > menu > span {
  display: block;
  height: 6px;
  width: 50px;
  background-color: #F68012;
  margin: 4px 0;
  border-radius: 3px;
}
header > span {
  display: block;
}
header > a > button {
  display: none;
}
#navigation {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: -70vh;
  right: 10vw;
  z-index: 90;
  background-color: white;
  box-shadow: 0 0 5px black;
  padding: 20px 20px 5px 20px;
  border-radius: 15px;
  transition: all 0.3s;
}
#navigation > a {
  padding: 0 0 15px 0;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
}
#navigation > a:hover {
  color: #F68012;
}
#over {
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  position: fixed;
}
#anti-over {
  position: fixed;
  height: 150px;
  width: 600px;
  z-index: 85;
}
#farinfo {
  position: fixed;
  top: -500px;
  background-color: #1D1D1D;
  color: white;
  width: 90%;
  padding: 10px;
  z-index: 70;
  border-radius: 20px;
  border: solid 1px #F68012;
  box-shadow: 0 0 5px #F68012;
  transition: all 0.3s;
}
#far-info > p {
  padding: 5px 0;
  font-size: 15px;
}
@media screen and (min-width: 1000px) {
  header {
    justify-content: space-around;
  }
  header > a > img {
    margin: 0;
  }
  menu {
    display: none;
  }
  nav {
    display: flex;
  }
  header > nav > a, header > nav > p {
    display: flex;
    margin: 0 10px;
    font-size: 23px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
  }
  header > nav > a:hover, header > nav > p:hover {
    color: #F68012;
  }
  header > a > button {
    display: flex;
    padding: 15px 25px;
    border-radius: 35px;
    border: 3px solid black;
    background-color: black;
    font-size: 18px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 5px black;
    transition: all 0.3s;
  }
  header > a > button:hover {
    background-color: white;
    color: black;
  }
  .hiden10 {
  display: none;
  }
  #navigation {
    flex-direction: row;
    right: auto;
    padding: 20px 5px 20px 20px;
  }
  #navigation > a {
    padding: 0 15px 0 0;
  }
}
