/* 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: #2e515b;
  margin-top: 5vh;
}

h1, h3 {
  color: #72c0ca;
  font-family: Arial;
  text-align: center;
  text-decoration: none;
}

h2 {
  color: #25340b;
  
}

h2 a {
  color: #72c0ca;
  font-family: Georgia, serif;
  text-align: center;
  text-decoration: underline dashed lightyellow 1px;
  text-underline-offset: 3px;
}

.cont {
  width: 550px;
  margin: auto;

}

.flex {
  display: flex;
  justify-content: center; 
  align-items: stretch; 
  flex-direction: row; 
  flex-wrap: wrap; 
  align-content: stretch;
  height: 100%;
  gap: 5px 10px;
}

.flex div {
  color: #2e515b;
  width: 47%;
  font-family: Georgia, serif;
  text-align: center;
  background-color: #e0e67a;
  border-radius: 3px;
  padding: 5px;
  letter-spacing: 1.5px;
}

.flex a {
  color: #86a234;
  text-decoration: underline dashed goldenrod 1px;
  text-underline-offset: 1px;
}

.flex a:hover {
  color: #86a234;
  text-decoration: underline dashed goldenrod 1px;
  text-underline-offset: 1px;
}