html,body {
  padding: 0;
  margin: 0;
}
body {
  background-color: #594f4a;
  text-align: center;
  text-transform: uppercase;
  color: black;

  font-family: "Josefin Sans";
  font-weight: 400;
  font-size: 14px;
}
h1,h2,h3 {
	margin: 0;
}
h1 {
  font-family: "Fjalla One";
  font-weight: normal;
  font-size: 35px;
  padding: 18px 0 15px 0;
}
img {
  max-width: 100%;
}
h2 {
  font-family: "Fjalla One";
  font-weight: normal;
  padding: 18px 0 15px 0;
  font-size: 22px;
}
h4 {
	margin-top: 27px;
	font-size: 12px;
	line-height: 15px;
}
hr {
  width: 50%;
  height: 1px;
  border: none;
  background-color: #d7c6b8;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  margin-top: 25px;
}
div.wrapper {
  margin: 0 auto;
  max-width: 600px;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 0 43px;
  background-color: #fff4e2;
}
ul {
  list-style: none;
  padding: 0 10%;
}
ul > li {
  display: inline-block;
  position: relative;
  padding: 5px 10px;
}
ul > li:before,
ul > li:after {
  content: "";
  display: block;
  position: absolute;
  background-color: #ac948a;
  width: 4px;
  height: 4px;
  bottom: 12px;
}
ul > li + li {
  margin-left: -7px;
}
ul > li:before {
  left: 0;
}
ul > li:after {
  right: 0;
}
form {
  display: inline-block;
  background-color: black;
  color: #fff4e2;
  padding: 13px 23px 8px 23px;
}
form h3 {
  font-family: "Fjalla One";
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 1.5px;
}
form input[type="email"] {
  background-color: #594f4a;
  color: #fff4e2;
  border: none;
  text-align: center;
  padding: 5px 10px;
  margin: 7px 0 5px 0;
	width: 130px;
}
form input[type="email"]::placeholder {
  color: #b0a69a;
  text-transform: uppercase;  
}
form button {
  border: none;
  display: block;
  width: 100%;
  background-color: transparent;
  text-align: center;
  color: #fff4e2;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1px;
  cursor: pointer;
}
form button:hover {
	color: #b0a69a;
}
