body {
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FAEB92;
  font-family: 'Noah', sans-serif;
}

h1 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 40px;
}

.socials {
  display: flex;
  gap: 24px;
  font-size: 1.2rem;
}

.socials a {
  color: #FAEB92;
  text-decoration: none;
}

.socials a:hover {
  text-decoration: underline;
}

:root{
  --bg: #111;
  --fg: #FAEB92;
  --pad: 40px;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Noah', system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === LAYOUT === */

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  transition: all .18s ease;
}

.container.top {
  align-items: flex-start;
  padding-top: var(--pad);
  padding-bottom: 20px;
}

/* === CONTENT === */

.content {
  width: 100%;
  max-width: 900px;
  font-size: clamp(1.05rem, 2.4vw, 1.6rem);
  line-height: 1.8;
  letter-spacing: 0.2px;
  padding: 12px;
  border-radius: 8px;
}

.content::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

.content::-webkit-scrollbar-thumb {
  background: rgba(250,235,146,0.12);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: padding-box;
}

/* === TEXT === */

.bio {
  margin: 0 0 1.2em 0;
  text-align: justify;
}

/* === MOBILE === */

@media (max-width: 420px) {
  :root {
    --pad: 20px;
  }

  .content {
    font-size: clamp(0.95rem, 3.6vw, 1.1rem);
    line-height: 1.7;
  }
}

body {
  margin: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #FAEB92;
  font-family: 'Noah', sans-serif;
}

.email {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: center;
}