#banner {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100vw;
  height: 120px;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
  box-shadow: 0px 4px 4px 0px #000000;
  z-index: 1000;
}

.underBanner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#underBannerLeft {
  width: 15%;
}

#underBannerLeft > a > img {
  height: 100px;
}

#underBannerCenter {
  width: 70%;
  font-family: TheBrownWall;
  font-size: 32px;
  text-align: center;
}

#underBannerRight {
  width: 15%;
}

#underBannerRight > a > img {
  width: 60px;
  border-radius: 50%;
  box-shadow: 2px 2px 2px 0px #888888;
}

#underBannerRight > a > img:active {
  translate: 2px 2px;
  box-shadow: 0px 0px 0px 0px #888888;
}

@media screen and (max-width: 1200px) {
  #banner {
    height: 80px;
    box-shadow: 0px 3px 3px 0px #000000;
  }

  #underBannerLeft > a > img {
    height: 70px;
  }

  #underBannerCenter {
    font-size: 20px;
  }

  #underBannerRight > a > img {
    width: 40px;
  }
}
@media screen and (max-width: 760px) {
  #banner {
    height: 60px;
    box-shadow: 0px 2px 2px 0px #000000;
  }

  #underBannerLeft > a > img {
    height: 50px;
  }

  #underBannerCenter {
    font-size: 14px;
  }

  #underBannerRight > a > img {
    width: 30px;
  }
}
@media screen and (max-width: 480px) {
  #underBannerLeft {
    width: 25%;
  }

  #underBannerCenter {
    width: 55%;
    font-size: 12px;
  }

  #underBannerRight {
    width: 20%;
  }
}
