* {
  box-sizing: border-box;
}

html, 
:root {
  --dark-blue-color: rgb(10, 7, 92);
  --light-blue-color: rgb(114, 168, 212);
  --highlight: rgb(255, 255, 94);
}

header {
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  margin: auto;
  text-align: center;  
  color: var(--dark-blue-color);  
  padding-bottom: 10px;       
  }

footer {
  background-color: white;
  border: 1px solid white;
  border-radius: 5px;
  margin: auto;
  text-align: center;  
  color: var(--dark-blue-color);    
}

body {
  background-color: var(--dark-blue-color);
  margin: 0;
  padding: 20px;
}

table { 
  background-color: lightsteelblue; 
  border-spacing: 7px; 
  border-radius: 5px;
  border: 1px solid black; 
  color: black;      
  max-width: 1100px;  
  min-width: 900px;  
}

table tbody tr td:nth-child(3) {    
  background-color: var(--light-blue-color);  
}

th { 
  background-color: var(--dark-blue-color);  
  border: 1px solid black;
  color: white;
}

td { 
  background-color: white; 
  margin: 33px; 
  border: 1px solid black;
}
th, td {
  padding: 3px; 
  }

dl { 
  width: wrap; 
  background-color: lightsteelblue;
  border-radius: 5px;
  border: 1px solid black;
  margin: 20px;
  padding: 10px;
}
dt { 
  text-decoration: underline;
}

figure {
  padding: 4px;
  margin: auto;
}

figcaption {
  color: white;
  font-style: italic;
  padding: 2px;
  text-align: center;
}

img {
  height: 300px;
}

.wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: auto;
  padding: 30px;
}

.grid-center {
  place-self: center;
  text-align: center;
}

.text1 {
  font-size: 22px;
  color: white;
}

.text2 {
  font-size: 18px;
  color: var(--dark-blue-color);
}

.highlight {
  background-color: var(--light-blue-color);
}

.highlight2 {
  border: 2px solid var(--dark-blue-color);
}

.highlight3 {
  background-color: var(--highlight);
}

.paragraph {
  text-align: center;
  margin: auto;
  padding: 10px;
  color:white;
}

.paragraph2 {
  text-align: left;
  margin: 20px;
  padding-top: 10px;
  color:white;
}

.outline {
  background-color: var(--dark-blue-color);
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 3px;
}

#chart {
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 5px;
  display: flex; 
  justify-content: center;
}

#messagebox {
  width: 600px; height: 100px; 
  margin:auto;
  background-color: lightsteelblue;
  padding: 10px;
  border-radius: 5px;
}

#resources {
  width: 600px; height: 170px; 
  margin:50px auto;
  background-color: white; 
  padding: 10px;
  border-radius: 5px;
  text-align: center;
  border: 5px var(--light-blue-color) solid;
}

#container {
  padding: 10px;
  margin: auto;
  display:flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px;
}

a:link {
  color: white;
  text-decoration: none;
}

a:visited {
  color: white;
}

a:hover {
  color: lightsteelblue;
  text-decoration: underline;
}