/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set background image and full viewport height */
body {
  background: url('img/cuzco.jpg') no-repeat center center/cover;
  height: 100vh;
  font-family: "Momo Trust Display", sans-serif;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Center container with subtle shadow for readability */
.container {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Title styling */
h1 {
  font-size: 4.5rem;
  margin-bottom: 20px;
}

/* Contact info styling */
.contact {
  font-size: 1.2rem;
  margin: 8px 0;
}
.contact a{
  font-size: 1.2rem;
  margin: 8px 0;
  color: white;
}

.corner-label {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 250px; /* adjust size as needed */
}