*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: 'Ubuntu Mono', monospace;
}
html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  background-color: white;
  color: #181818;
  position: relative;
  font-size: 20px;
}
a,
a:visited {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
}
a:hover,
a:focus {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}
#logoArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
#logoArea img {
  width: 80%;
  height: auto;
}
/* ==== */
#scrollSpace {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: transparent;
  z-index: 0;
}
/* === */
ul.bottom-menu {
  position: relative;
  width: 100%;
  height: auto;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 0;
  list-style: none;
  z-index: 20;
}
ul.bottom-menu > li {
  display: flex;
  justify-content: flex-end;
  border-right: 1px solid #909090;
  padding: 0px 1rem;
  font-size: 1rem;
}
ul.bottom-menu > li:last-child {
  border-right: 0;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  ul.bottom-menu > li {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 370px) {
  ul.bottom-menu > li {
    font-size: 0.7rem;
  }
}
/* === */
.copyrightline {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .copyrightline {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 370px) {
  .copyrightline {
    font-size: 0.5rem;
  }
}
