/* 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." */

/* unused hex codes:
    [pulled from photos] #dbac99 (medium beige)
    [color palette] #c9c1e6 (lavender) #3c2f66 (dark shade) #c1e6c3 (mint) #5b915d (darker shade) #66482f (brown, darker shade of bg) */

body {
  background-color: #e6d3c2;
  color: black;
  font-family: "Lucida Console", monospace;
  text-align: center;
}

a:link {
 color: #5b915d; 
 text-decoration: none;
}

a:visited {
 color: #66482f; 
 text-decoration: none;
}

a:hover {
 color: #3c2f66; 
 text-decoration: underline;
}

a:active {
 color: #c1e6c3; 
 text-decoration: underline;
}

hr {
  background-color: #c9c1e6;
  height: 3px;
  width: 70%;
  border: none;
  margin: 5px auto 5px auto;
}

.maintext {
  border: 6px solid #c9c1e6;
  border-radius: 60px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 40px 20px;
}

.dash {
  margin-left: auto;
  margin-right: auto;
}
.dash td {
  padding: 5px 10px 5px 10px;
  font-size: 120%;
  color: #3c2f66;
}

#map { height: 480px; width: 60%; margin: auto; }