body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f7f9fa;
  color: #222;
}
.container {
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
}
.profile-pic {
  width: 260px;
  height: 260px;
  background: #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.rounded {
  border-radius: 10%;
}
.content {
  max-width: 600px;
}
.wedding-link {
  background: #fffbe6;
  border-left: 4px solid #ffd700;
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  /* width: 30%;
  margin-left: auto;
  margin-right: auto; */
}
.wedding-link a {
  color: #0077cc;
  text-decoration: underline;
  font-weight: 500;
}
h1 {
  margin-top: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.intro {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #333;
}
@media (max-width: 800px) {
  .container {
    flex-direction: column;
    padding: 24px 4px;
  }
  .profile-pic {
    margin: 0 0 28px 0;
  }
}
.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 0 18px 0;
}
footer {
  background: #f2f2f2;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}
.footer-content a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.15s;
}
.footer-content a:hover {
  transform: scale(1.12);
  opacity: 0.85;
}
