@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@700&display=swap');

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 14px;
}

.page-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100vh;
  background: linear-gradient(60deg, rgba(2, 0, 36, 1) 12%, rgba(117, 135, 146, 1) 100%);
}

.header-bar {
  background: rgb(0,158,255);
  background: linear-gradient(60deg, rgb(255, 255, 255) 0%, rgb(0, 0, 0) 100%); 
  padding: 20px;
  border-bottom: 0px solid rgb(255, 255, 255);
  width: 100%;
}

.header-container {
  box-sizing: content-box;
  width: 100%;
  position: relative;
}

.logo {
  max-width: 100%;
  max-height: 250px;
}

.buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  transform: translateY(-50%);
  position: absolute;
}

.buttons a {
  flex-grow: 1;
  min-width: 100px;
  box-sizing: content-box;
}

.buttons button {
  outline: 0;
  width: 100%;
  border-bottom-left-radius: 5pt;
  border-bottom-right-radius: 5pt;
  border-radius: 50pt;
  font-size: 1.5vw;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
  background-color: rgb(221, 221, 221);
  border-top: 5px solid white;
  border-left: 5px solid rgb(108, 255, 248);
  border-right: 5px solid rgb(255, 105, 105);
  border-bottom: 5px solid  rgb(255, 255, 255);
}
.buttons button:hover {
  background-color: rgb(48, 212, 241);

}
.buttons button:active, .buttons button.active {
  background-color: rgb(255, 151, 151);
}

@media (max-width: 480px) {
  .buttons button {
    flex-basis: 50%;
  }
}

.page-content {
  width: 100%;
  height: 100%;
  padding: 5px 20px 10px;
  color: white;
  font-family: 'Zen Kaku Gothic Antique', sans-serif;
}

.construction {
  font-size: 4vw;
  margin: 0;

}

.sorry {
  font-size: 2vw;
  margin: 0;
}