:root {
  color: #fdd209;
  background: #1f1f1f;
  font-family: Times;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #1f1f1f;
  color: #fdd209;
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  text-transform: lowercase;
}

h3 {
  color: #ffffff;
  margin: 24px 0;
  max-width: 600px;
}

h2 {
  color: #ffffff;
  margin: 0;
}

a {
  color: #1984ff;
}

h2 a {
  color: #1984ff;
}

.social-link {
  display: inline-block;
  transition: color 160ms ease, transform 160ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
}

.twitter-link {
  color: #1da1f2;
}

.twitter-link:hover {
  color: #5bbcff;
}

.instagram-link {
  color: #c13584;
}

.instagram-link:hover {
  color: #e05ca3;
}

.linktree-link {
  color: #43e55e;
}

.linktree-link:hover {
  color: #78f28b;
}

#email-button {
  background: #fdd209;
  border: 1px solid #fdd209;
  color: #1f1f1f;
  cursor: pointer;
  font: inherit;
  margin-top: 24px;
  padding: 10px 20px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

#email-button:hover {
  background: #ffe066;
  border-color: #ffe066;
  transform: translateY(-2px);
}