@font-face {
  font-family: 'ABCManolo';
  src: url('../fonts/ABCManolo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transform: scale(1.05)
}

html {
  transform: scale(1.05);
  transform-origin: top center;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background:
    repeating-linear-gradient(
      to right,
      rgba(157, 186, 157, 0.193) 0,
     rgba(157, 186, 157, 0.193) 1px,
      transparent 1px,
      transparent 40px
    ),
    repeating-linear-gradient(
      to bottom,
     rgba(157, 186, 157, 0.193) 0,
   rgba(157, 186, 157, 0.193) 1px,
      transparent 1px,
      transparent 40px
    ),
    #ffffff;
  color: #1f2a1f;
  padding: 24px;
  background-attachment: fixed;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  text-align: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 4px 4px 8px rgba(0,0,0,0.25);
  margin-bottom: 16px;
}

h1 {
  font-size: 3.5rem;
  margin: 0 0 12px 0;
  font-family: 'ABCManolo', system-ui, sans-serif;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
  color: #4f4f4f;
  margin-bottom: 16px;
  text-align: left;
}

li {
  margin-bottom: 1em;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center; /* centers text and icon */
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 12px;
    font-weight: 600;
    transition: transform 0.1s ease, filter 0.15s ease;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}


.link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.letterboxd { background-color: #0f9d58; }
.goodreads { background-color: #fbbc05; }
.bluesky   { background-color: #4285f4; }
.github    { background-color: #db4437; }
.blog      { background-color: #3f5f4f; }

.footer {
  margin-top: 24px;
  font-size: 0.75rem;
  opacity: 0.6;
  text-align: center;
}