* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #874424;
  color: #cbd4d6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
    'Helvetica Neue', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
}

a:hover {
  color: white;
  text-shadow: 0px 0px 5px #cbd4d6;
}

nav ul {
  display: flex;
  gap: 2rem;
  margin: 1rem 2rem;
  list-style: none;
}
/* 
nav ul li {
  float: left;
  margin-right: 2rem;
}

nav ul::after {
  content: '';
  clear: both;
  display: table;
} */

h1 {
  text-align: center;
  margin: 2rem;
  letter-spacing: 2px;
  text-shadow: 2px 3px 0px #cb8834;
}

main {
  max-width: 1024px;
  margin: 0 auto;
}

.featured-img {
  max-width: 600px;
  margin: 2rem auto;
}

.featured-img img {
  border-radius: 17px;
}

.featured-img figcaption {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-align: right;
}

p {
  max-width: 80ch;
  margin: 3rem;
}

.address {
  margin: 2rem 4rem;
}

.address li::marker {
  content: '-> ';
  font-size: 0.9rem;
}

.contact {
  /* text-align: center; */
  margin: 3rem 2rem;
}

.contact__label {
  display: inline-block;
  width: 7rem;
}

.contact__input {
  width: 15rem;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 3px;
  resize: none;
  font: inherit;
}

.btn {
  font: inherit;
  margin-top: 0.5rem;
  padding: 0.33rem 0.75rem;
  background-color: #2c2321;
  color: #cbd4d6;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background-color: #503a35;
  color: white;
}

.btn:active {
  transform: translateY(1px);
}

.contact .btn {
  margin-top: 1rem;
  margin-left: 17rem;
}

footer {
  text-align: center;
}