@import url('https://fonts.googleapis.com/css2?family=BBH+Sans+Hegarty&family=Playwrite+US+Modern:wght@100..400&family=Roboto+Mono:wght@100..700&display=swap');
body {
  text-align: center;
  font-size: 16px;
  padding: 20px;
  background: grey;
  user-select: none;
  animation: Fade 1s ease-out forwards;
  -webkit-user-select: none; /* Chrome, Safari, Opera */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* Edge, IE */
}
#updts {
  animation: Fade 2.5s ease-out forwards;
}
@keyframes Fade {
  from {opacity: 0;}
  to {opacity: 1;}
}
header {
  background: lightskyblue;
  background-size: 50px 50px;
  width: 100%;
  height: 8.5vw;
}
h1 {
  font-size: 3vw;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
  font-family: 'Playwrite US Modern', cursive;
}
h2 {
  margin-top: 0px;
  margin-bottom: 5px;
  font-size: 1.5vw;
  font-weight: normal;
  font-family: 'Roboto Mono', monospace;
}
h3 {
  font-size: 5vw;
  font-weight: normal;
  margin: 0px;
  font-family: 'BBH Sans Hegarty', sans-serif;
}
h4 {
  font-size: 1.5vw;
  margin-top: 2px;
  margin-bottom: 10px;
  font-family: 'Roboto Mono', monospace;
}
footer {
  font-size: 1.5vw;
  font-weight: bold;
  color: darkgrey;
  font-style: italic;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Roboto Mono', monospace;
}
#Active {
  animation: Active 2.5s infinite linear !important;
}
@keyframes Active {
  0% { color: black; }
  50% { color: orange; }
  100% { color: black; }
}
#Fixing {
  color: darkblue !important;
}
#Soon {
  color: darkred !important;
}
#Fixed {
  color: forestgreen;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 4.5vw;
  }
  h2 {
    font-size: 2.5vw;
  }
  h3 {
    font-size: 6vw;
  }
  h4 {
    font-size: 2vw;
  }
  header {
    height: 11vw;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  h1 {
    font-size: 3.5vw;
  }
  h2 {
    font-size: 2vw;
  }
  h3 {
    font-size: 5.5vw;
  }
  header {
    height: 10vw;
  }
}