/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Segoe UI", sans-serif; */
}

body {
  background: linear-gradient(135deg, #fdf7f7, #fce4ce);
  color: #4a4a4a;
  font-family: "Inter", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

/* Header with button */
header {
  position: absolute;
  top: 20px;
  right: 20px;
}

.blog-button {
  background-color: #bf6359;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.blog-button:hover {
  background-color: #843c44;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  border-left: 4px solid #843c44;
  transform: scale(1.02);
}

.main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Profile picture */
.profile-pic {
  width: 260px;
  height: 400px;
  max-width: 90vw;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #bf6359;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  margin-bottom: 3rem;
}

/* Text below photo */
.intro-text {
  text-align: center;
  color: #444;
  font-size: 1.1rem;
}

/* Mobile-friendly */
@media (max-width: 600px) {
  .profile-pic {
    width: 180px;
    height: 280px;
  }

  .blog-button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .intro-text {
    font-size: 1rem;
  }
}
