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

body {
  font-family: 'Space Mono', monospace;
  background-color: #f5f0e8;
  color: #2c2c2c;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

main {
  max-width: 900px;
  width: 100%;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
}

.intro {
  display: flex;
  align-items: center;
  gap: 32px;
}

.description {
  font-size: 1.1rem;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 0.9rem;
}

.bullets li::before {
  content: "* ";
}

.bullets li {
  margin-bottom: 4px;
}

.photo-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e0d9cd;
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1) translateY(5%);
}

a {
  color: #2c2c2c;
  text-decoration: none;
  transition: opacity 0.2s;
}

.mail-btn {
  margin-top: 32px;
  display: inline-block;
}

.mail-icon {
  width: 24px;
  height: auto;
}

.mail-btn:hover {
  opacity: 0.7;
}
