.header {
  width: 100%;
  height: 80px;
  position: sticky;
  top: 0;
  background-color: black;
  color: white;
  display: block;
  z-index: 10;
}

.inner-header {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

#title {
  height: 100%;
  font-size: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

#navigation {
  height: 100%;
  font-size: 20px;
  gap: 30px;
  display: flex;
  align-items: center;
}

#navigation-mobile {
  width: 100%;
  height: 80px;
  position: sticky;
  bottom: 0;
  background-color: black;
  color: white;
  display: none;
  z-index: 10;
  font-size: 15px;
}

#inner-navigation-mobile {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  #navigation {
    display: none;
  }
  .header {
    height: 60px;
  }
  .inner-header {
    justify-content: center;
  }
  #navigation-mobile {
    display: block;
    height: 60px;
  }
}
.header-link:hover {
  opacity: 0.5;
}

.logo {
  height: 300px;
  width: 300px;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}