.sr-only {
	position: absolute;
  left: -10000px;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.sr-only:focus {
	position: static;
  width: auto;
  height: auto;
}

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

body {
	font-family: "Lato", sans-serif;
  background-color: var(--secondary);
}
main {
	color: black;
}

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

.container {
	background-color: var(--primary);
  width: 100%;
  padding: 0.25em;
  justify-content: center;
  align-content: center;
}

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

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

@media (min-width: 768px) {
	#navigation {
    flex-direction: row;
  }
  #amelia {
    float: left;
    padding-right: 0.5em;
  }
}