@font-face {
  font-family: alarm-clock;
  src: url("/fonts/alarmclock.ttf");
}

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  background-color: black;
  color: white;
  font-family: Verdana;
  margin: 0;
  padding: 0;
}

pre {
  font-size: .6vw;
  font-weight: 900;
  text-shadow: 2px 2px #ff0000;
}

#header {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  text-shadow: 2px 2px 5px rgb(140, 205, 235);
  height: 70px;
  border-bottom: 5px solid rgb(126, 153, 163);
  margin-bottom: 20px;
  background-color: rgb(76, 88, 91);
}

#page-body {
  display: flex;
  justify-content: center;
}

#content {
  display: flex;
  flex-direction: column;
  width: 60%;
  border: 4px groove rgb(114, 92, 173);
  background-color: black;
}

#bg {
  position: absolute;
  z-index: -1;  
}

#top-row {
  display: flex;
  justify-content: center;
}

#welcome-box-outer {
  border: 4px solid rgb(114, 92, 173);
  padding: 5px;
  background-color: rgb(11, 29, 81);
  margin: 10px;
}

#welcome-box-inner {
  border: 2px solid rgb(114, 92, 173);
  padding: 30px;
}

#welcome-box-inner > p {
  margin-top: 0;  
}

#middle-row {
  display: flex;
  justify-content: center;
}

#info-box {
  display: flex;
  border: 10px solid rgb(126, 153, 163);
  background-color: rgb(76, 88, 91);
  width: 100%;
  height: 500px;
}

#info-nav {
  width: 13%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#info-nav > button {
  margin-top: 10px;
  width: 80%;
  height: 50px;
  transition-duration: 0.4s;
  border: 2px solid rgb(126, 153, 163);
  background-color: rgb(76, 88, 91);
  color: rgb(196, 223, 233);
}

#info-nav > button:hover {
  background-color: rgb(126, 153, 163);
  color: rgb(6, 18, 21);
}

#info {
  width: 87%;
  border: 8px solid rgb(76, 88, 91);
}

#earth-box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 10px;
}

#stat-box {
  border: 4px solid rgb(126, 153, 163);
  background-image: linear-gradient(to right, rgb(34, 34, 34), rgb(43, 43, 43));
  font-size: 18px;
  font-family: alarm-clock;
  color: rgb(0, 255, 0);
  text-align: center;
  width: 350px;
}

#beach-box {
  color: rgb(140, 205, 235);
}

#bottom-row {
  height: 500px;  
  color: rgb(254, 238, 146);
  background-image: linear-gradient(rgb(11, 29, 81), rgb(114, 92, 173), rgb(255, 227, 169));
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer {
  height: 300px;
  background-image: linear-gradient(to right, rgb(34, 34, 34), rgb(53, 53, 53));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#footer > p {
  font-size: 9px;  
}
