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

/* general site-wide settings */

body {
  background-color: seashell;
  color: black;
  font-family: courier;
  padding: 50px;
}

/* my container settings */

.pagetitlebox {
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: salmon;
  text-align: center;
}


.mainsectionbox {
  width: 50%;
  padding: 50px;
  padding-top: 25px;
  margin-left: auto;
  margin-right: auto;
  background-color: antiquewhite;
  text-align: center;
}

.footerbox {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* other elements across all site pages */

hr {
  background-color: darksalmon;
  border-color: darksalmon;
  height: 2px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

span {
  background-color: lightsalmon;
  color: white;
}

/* this one below gets rid of bullet points in unordered lists */
li {
  list-style-type: none;
}

/* settings for my hyperlinks */
a {
  background-color: lightsalmon;
  color: white;
}

a:visited {
  background-color: lightsalmon;
  color: navy;
}

a:hover {
  background-color: antiquewhite;
  color: darksalmon;
}

label {
  font-family: Tahoma;
  display: block;
  margin: 1rem 0;
}
