@import url('https://fonts.googleapis.com/css2?family=Spectral:wght@400;600&family=IBM+Plex+Sans:wght@400;500&display=swap');

:root {
  --follyrhythm-forest: #355c3a;
  --follyrhythm-earth: #a67c52;
  --follyrhythm-sky: #4a90a4;
  --follyrhythm-sunset: #e07a5f;
  --follyrhythm-moon: #f4e9cd;
  --follyrhythm-shadow: #2d2d34;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}


a {
  text-decoration: none;
  color: inherit;
}

body {
  background: linear-gradient(135deg, var(--follyrhythm-forest), var(--follyrhythm-sky));
  color: var(--follyrhythm-moon);
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.float-animate {
  color: var(--follyrhythm-sunset);
  user-select: none;
  text-shadow: 2px 2px 8px var(--follyrhythm-shadow);
}

#main-header {
  font-size: 3rem;
  font-family: 'Spectral', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: flex;
  justify-content: center;
  gap: 0.05em;
  user-select: none;
  margin-bottom: 1rem;
  filter: contrast(1.2);
}

#social-links {
  filter: contrast(.9) brightness(.9);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  margin-top: 2rem;
  position: relative;
  z-index: 3;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2em;
  height: 2em;
  cursor: pointer;
  position: relative;
  z-index: 3;
  font-size: 2em;
}
