/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  padding: 2rem 1rem;
}

/* Container */
.container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Profile photo */
.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 2rem;
}

/* Typography */
h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  font-weight: 600;
}

.content {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.content p {
  margin-bottom: 1rem;
}

/* Links */
a {
  color: #0066cc;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #004499;
  text-decoration: underline;
}

/* Social links */
.social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.social-links li {
  margin: 0.5rem 0;
}

/* Contact section */
.contact {
  margin-top: 2rem;
}

/* Webcam section */
.webcam {
  margin-top: 2rem;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 600px) {
  body {
    padding: 1rem 0.5rem;
  }

  h1 {
    font-size: 2rem;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }
}
