body {
  font-family: 'Oswald', sans-serif;
  margin: 0;
  padding: 0;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 20px;
  text-align: center;
  background-color: #D7B49E;
  color: #876b56;
}

.contact h2 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #876b56;
}
.contact-title:hover {
  font-size: 52px;
}

.contact-title:hover {
  font-size: 52px;
}

.contact .back-link {
  text-decoration: none; /* Remove underline */
  position: relative;
}

.contact .back-link::after {
  content: "Click!";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #876b56;
  color: #ffffff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.contact .back-link:hover::after {
  opacity: 1;
}

.contact-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.contact-item:hover {
  transform: scale(1.1);
}

.contact-icon {
  font-size: 24px;
  margin-right: 10px;
}

.contact-label {
  font-weight: bold;
  margin-right: 10px;
}

.contact-details {
  font-size: 18px;
}
