:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: #dcefe1;
}

main {
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 32px;
}

img {
  display: block;
  width: clamp(180px, 24vw, 240px);
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgb(46 122 112 / 18%);
}

.identity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.identity p {
  margin: 0;
  color: #2e7a70;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.contact {
  color: rgb(46 122 112 / 68%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease;
}

.contact:hover,
.contact:focus-visible {
  color: #2e7a70;
}
