html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-family: "Poppins", serif;
  margin: 0;
  padding: 0;
  background-color: #a87e62;
}

header {
  background-color: #3a2317;
  padding: 1.5rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: -1.8rem;
}

footer {
  padding-top: 40vh;
  text-align: center;
}

nav {
  max-width: 1200px;
  margin: 0 auto;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  padding: 0;
}

nav li {
  margin: 0 20px;
}

nav a {
  color: #f4decb;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s, transform 0.3s;
}

nav a:hover {
  background-color: #1a7a9d;
  transform: translateY(-2px);
}

h1 {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3rem;
  color: black;
  text-align: center;
  margin: 50px 0;
  margin-bottom: -30px;
  padding: 0;
  letter-spacing: 1px;
}

.Container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 40px;
  background: #f4decb;
  border-radius: 10px;
  max-width: 1200px;
  margin: 50px auto;
}

.Item {
  text-align: center;
  flex: 1;
  max-width: 150px;
}

.Item h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #333;
}

.Item img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
}

.Item img:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
