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

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

#header {
  text-align: center;
  font-weight: bold;
  font-style: italic;
  font-size: 50px;
  text-shadow: 2px 2px 5px cyan;
  height: 70px;
  width: 100vw;
  border-bottom: 5px solid gray;
  margin-bottom: 20px;
}

#content {
  display: flex;
  flex-direction: column;
}

#top-row {
  display: flex;
  align-items: flex-start;
}

#welcome-box {
  outline-style: solid;
  outline-color: cyan;
  outline-width: medium;
  margin: 10px;
}

#earth-box {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 10px;
}

#stat-box {
  align-self: flex-end;
  outline-style: solid;
  outline-color: cyan;
  outline-width: medium;
  width: 350px;
}

#bottom-row {
  display: flex;
  align-items: flex-start;
}

#info-box {
  display: flex;
  outline-style: solid;
  outline-color: gray;
  outline-width: medium;
  width: 40vw;
  height: 500px;
}

#info {
  margin-left: 10px;    
}

#beach-box {
  margin-left: 10vw;  
}

#footer {
  background-color: gray; 
  color: black;
}
