/* backgound: light color
foreground (text): dark color
*/
.transp {
  opacity: 0.5;
}
.undit {
  font-style: italic;
  text-decoration: underline;
}
.boldUP {
  font-weight: bold;
  text-transform: uppercase;
}
.imgf {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.ovl {
  text-decoration: overline;
}
.str {
  text-decoration: line-through;
}
.und {
  text-decoration: underline;
}
.ou {
  text-decoration: underline overline;
}
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  background-color: #ffffff;
  color: #000000;
}
a:link {
  color: #000000;
}
a:visited {
  color: #1a000d;
}
a:hover {
  transform: scale(1.1);
  display: inline-block;
}
main,
header,
footer,
nav {
  padding: 1em;
}
nav {
  background-color: #ffffff;
  color: #443131;
}
nav a:link {
  color: #090606;
}
nav a:visited {
  color: #0f0008;
}
header {
  background-color: #D0BB9A;
  color: #D0BB9A;
}
footer {
  background-color: #FFC285;
  color: #0000A0;
}
footer a:link {
  color: #6F1806;
}
footer a:visited {
  color: #660066;
}
@media (min-width: 321px) and (max-width: 480px) {
  nav ul li {
    text-align: center;
    list-style: none;
  }
}
@media only screen and (min-width: 481px) {
  nav ul li {
    text-align: left;
    list-style: none;
    display: inline;
    padding: 1em;
  }
}
h1,
h2,
h3 {
  font-weight: bold;
}
h1 {
  font-size: 1.8em;
}
h2 {
  font-size: 1.4em;
}
h3 {
  font-size: 1.1em;
}
ul {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 1em;
  text-indent: -1em;
}
li {
  line-height: 1.5em;
}
em {
  font-style: italic;
}
pre {
  font-family: "Courier New", monospace;
  white-space: pre-wrap;
}
@media only screen and (min-width: 481px) {
  body {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1025px) {
  header,
  main,
  footer {
    padding: 2em;
  }
}