@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

body {
  font-family: 'Playfair Display', serif;
  color: hwb(0 6% 84%);
  background-color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: 400;
}
#container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
#nav {
  border-bottom: 2px solid hwb(0 0% 89%);
  border-top: 2px solid hwb(0 0% 89%);
}
#nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 1rem 0;
}
#nav ul li {
  list-style: none;
}
#nav ul li a {
  text-decoration: none;
  color: hwb(0 32% 12%);
  font-size: 1.8rem;
  font-weight: 600;
}
#nav ul li a:hover {
  color: hwb(0 32% 12%);
  text-decoration: underline;
}
h3 {
  color: hwb(0 30% 0%);
}
h1 {
  font-size: 5rem;
  font-weight: 700;
  color: hwb(0 20% 46%);
  font-style: italic;
  padding-top: 2rem;
}
h1 a {
  color: hwb(0 20% 46%);
  text-decoration: none;
}
h1 a img {
  width:1000px
}
h1 a:hover {
  text-decoration: none;
  font-weight: 600;
}
h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: hwb(0 1% 89%);
  padding-top: 2rem;
}
a {
  color: hwb(0 32% 12%);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  font-weight: 600;
}
.gallery img {
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
  width: 350;
  height: 500px;
  object-fit: cover;
}
.gallery img:hover {
  opacity: 1;
  transform: scale(1.2);
}
.promo {
  border: 4px solid #5c1111;
  background-color: #f94c4c;
  font-size: large;
  font-weight: 600;
  text-align: center;
  color: white;
  padding: 0.5rem;
  box-shadow: 0 5px 5px 5px rgba(0, 0, 0, 0.2);
}
.promo a {
  color: white;
  text-decoration: none;
}
.promo a:hover {
  text-decoration: underline;
  font-weight: 1000;
}
.secondary {
  border-color: #ac104c;
  background-color: #e3329c;
  margin-top: 1rem;
}
footer {
  background-color: #cf5454;
  color: white;
  padding: 0.5rem;
  text-align: center;
  margin-top: 2rem;
  display: flex;
  font-size: 18px;
}
footer ul {
  flex: 1 1 75%;
  display: flex;
}
footer ul li {
  list-style: none;
  margin: 0 1rem;
}
footer ul li a {
  color: #fff;
}
footer .copyright {
  margin-right: 1rem;
}
