:root {
  --primary: #f2e8d1;
  --secondary: #b36b3b;
}

body {
	font-family: "Lato", sans-serif;
  background-color: var(--secondary);
  margin:25px;
}

#navigation {
	display: flex;
  justify-content: space-around;
  flex-direction: column;
  background-color: var(--secondary);
  border-radius:8px;
  padding:3px;
}
#logo {
	width: 100%;
  max-width: 200px;
}

.container {
	background-color: var(--primary);
  width: 100%;
  max-width: 1200px;
  margin: 8px auto;
  padding: 1em;
  border-radius:15px;
  border:double #7F4C2A 6px;
}

.fancy {
	font-family: "Tangerine", cursive;
}
.text-center {
	text-align: center;
}
.img-responsive {
	width: 100%;
  border-radius:9px;
}
.nav-link {	
  color: black;
  font-size: 1.3em;
  padding: 0.5em 1em;
  text-decoration: none;
  font-weight: bold;
  border-radius:6px;
}
.nav-link:hover,
.active {
	background-color: var(--primary);
  color: var(--secondary-darker);
  border-radius:6px;
}

#skip {
  color:transparent;
  position:absolute;
  left:-1000px;
}

#skip:focus {
  color:white;
	background-color: #2B79C0;
  padding:10px;
  font-weight:bold;
  left:45%;
}

blockquote {
  font-style:italic;
}
.speaker{font-weight:bold; font-style:normal; text-align: right;}

@media (min-width: 768px) {
	#navigation {
    flex-direction: row;
  }
}