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

body {
  font-family: "Georgia", serif;
  background: linear-gradient(180deg, #f3eee6 0%, #e2d4bf 100%);
  color: #2f2923;
  line-height: 1.9;
  padding: 40px 5%;
  overflow-x: hidden;
}

h1 {
  text-align: center;
  font-size: 3rem;
  letter-spacing: 5px;
  margin-bottom: 60px;
  color: #3e2f25;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  background: #a67c52;
  margin: 20px auto 0 auto;
}

section {
  width: 100%;
  max-width: 1800px;
}

section::after {
  content: "";
  display: block;
  clear: both;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #4b3a2f;
  letter-spacing: 1px;
  border-left: 5px solid #a67c52;
  padding-left: 15px;
}

p {
  font-size: 1.05rem;
  margin-bottom: 22px;
  text-align: justify;
  color: #3c352f;
}

a {
  color: #7a4e2d;
  text-decoration: none;
  border-bottom: 1px dotted #7a4e2d;
  transition: all 0.3s ease;
}

a:hover {
  color: #b08968;
  border-bottom: 1px solid #b08968;
}

section img {
  float: center;
  width: 40%;
  max-width: 50%;
  margin: 10px 0 25px 30px;
}

section iframe {
  float: right;
  width: 40%;
  max-width: 50%;
  margin: 10px 0 25px 30px;
}