@import url(./vars.css);

.header-menu {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: calc(100% - 5rem);
  height: 5rem;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2.5rem;
}

@media (max-width: calc(100vh * 1 / 1)) {
  .header-menu {
    justify-content: left;
    height: 4rem;
  }
}

.webicon {
  height: 4.5rem;
  filter: drop-shadow(.1rem .1rem .2rem rgba(0, 0, 0, 0.5));
  pointer-events: visibleFill;
  user-select: none;
  -webkit-filter: drop-shadow(.1rem .1rem .2rem rgba(0, 0, 0, 0.5));
}

@media (max-width: calc(100vh * 1 / 1)) {
  .webicon {
    height: 4rem;
  }
}

@media (max-width: 400px) {
  .webicon {
    height: auto;
    width: 100%;
  }
}

.header-right-block {
  display: flex;
}

.header-right-block p {
  margin-left: 1.5rem;
}

.header-right-block p a {
  transition: all .2s;
  color: white;
  pointer-events: visibleFill;
  text-decoration: none;
  font-size: 1.4rem;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -ms-transition: all .2s;
  -o-transition: all .2s;
}

@media (max-width: calc(100vh * 4 / 3)) {
  .header-right-block {
    display: none;
  }
}

.footer-box {
  width: 100%;
  height: 5rem;

  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}