* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto",
    "Helvetica", "Arial", sans-serif;
  line-height: 1.7;
  color: #333;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
  min-height: 100vh;
  padding: 20px;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 20px;
}

.photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f0f0f0;
  margin: 0 auto 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.9em;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 3px solid #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 2em;
  color: #000;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
}

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

a:hover {
  opacity: 0.7;
}

.links {
  margin-top: 3em;
  padding-top: 2em;
  border-top: 1px solid #e5e5e5;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.links a {
  font-size: 1em;
  color: #666;
  padding: 8px 16px;
  border-radius: 6px;
  background-color: #f8f8f8;
  transition: all 0.2s ease;
  font-weight: 500;
}

.links a:hover {
  background-color: #e8e8e8;
  color: #333;
  transform: translateY(-1px);
  opacity: 1;
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }

  h1 {
    font-size: 1em;
  }

  p {
    font-size: 1em;
  }
}
