/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

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

#DeviationSecure {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid lime;
}

#DeviationSecure hr {
  border: 1.8px solid white;
}

#DeviationNeutral {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid orange;
}

#DeviationNeutral hr {
  border: 1.8px solid white;
}

#DeviationModerate {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid yellow;
}

#DeviationModerate hr {
  border: 1.8px solid white;
}

#DeviationHazardous {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid red;
}

#DeviationHazardous hr {
  border: 1.8px solid white;
}

#DeviationCataclysmic {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid purple;
}

#DeviationCataclysmic hr {
  border: 1.8px solid white;
}

#DeviationUnknown {
  margin-left: 320px;
  margin-right: 320px;
  padding: 3px;
  border: 5px solid grey;
}

#DeviationUnknown hr {
  border: 1.8px solid white;
}

p {
  font-size: 21px;
}