/* css code for creative project 03 applied to index.html and about.html
 *
 * by Matei Armanasu, CSE154 Spring 2018
 * Instructor: Lauren Bricker
 * Section: AG
 * Date: 04/11/18
 **/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans%7CPoppins');

body {
  background-color: #e8f0ff;
  font-family: Poppins, sans-serif;
}

h1 {
  color: #91641d;
  text-decoration: underline solid #91641d;
}

ol {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

ol > li {
  color: silver;
  font-size: 16pt;
  font-weight: bold;
  padding: 10px;
}

ul {
  color: gray;
  font-size: 12pt;
  font-style: italic;
  list-style-type: disc;
}

button {
  color: black;
  background-color: green;
  border: 0px;
}

p {
  font-family:"Noto Sans", cursive;
}

a:visited {
  color: #0000EE;
}

footer {
  font-size: 10pt;
  text-align: center;
}

footer p {
  margin: 2em;
}

hr ~ p {
  padding-top: 0px;
  border-top:0px;
  margin-top: 0px;
}

img {
  border-radius: 12px;
  max-height: 400px;
}

del {
  opacity: .5;
  border: 1px solid black;
}

.anecdote {
  background-color: #99db81;
  border: 2px outset #99db81;
}

.image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.species {
  color: black;
}

#Carl {
  font-size: 20pt;
  color: #ef8f21;
}

#hidden {
  text-decoration: none;
  color: inherit;
}

#redacted {
  opacity: 1;
  background-color: black;
}
