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

html{
	width:96%;
}

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

#skip {
  background: #fff;
  position: absolute;
  left: -9999px;
  text-decoration: none;
  color: #000;
  padding: 0.5em;
  opacity: 0;
}				

#skip:focus {
  position: static;
	opacity: 1;
}

a {
	color:#000000;
}

#navigation {
	display: flex;
  justify-content: space-around;
  flex-direction: column;
  background-color: var(--secondary);
}
#logo {
	width: 100%;
  max-width: 200px;
}
#contact-form input,
#contact-form textarea {
	width: 100%;
  height:24px;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  font-size: 1em;
  border: 2px solid var(--secondary);
}
#contact-form label {
	font-weight: bold;
}
#message {
	width: 100%;
}

#submit, #sitemap{
	width:95px;
  height:40px;
  border: 2px solid var(--secondary);
  font-weight:bold;
  font-size: 1em;
}

.container{
	background-color: var(--primary);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1em;
}

.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;
}
.nav-link:hover,
.active {
	background-color: var(--primary);
}
.required {
	color: black;
}

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