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

@font-face {
  font-family: 'Satoshi';
  src: url('assets/Satoshi-Variable.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
}

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

body {
  background-color: #FAFAFA;
  color: #000000;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.875rem; /* 14px */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.375rem; /* 70px between sections */
  padding: 2rem;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem; /* 10px between grouped items */
}

.name {
  font-family: 'Melodrama', serif;
  font-size: 2.2rem;
  font-weight: normal;
}

.tagline {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.note {
  font-size: 1rem; 
  max-width: 40rem;
  line-height: 1.5;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem; /* 10px between grouped items */
}

.contact-label {
  font-size: 1rem;
  font-weight: 500;
}

.contact-icons {
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px between grouped icons */
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icons img {
  height: 2rem;
  width: auto;
}