:root {
  color-scheme: dark;
  font-family: "Satoshi", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  background: #000;
}

button {
  font: inherit;
}

.link-button {
  text-decoration: none;
}

.profile {
  display: flex;
  width: min(100% - 40px, 460px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 32px 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  margin: 0;
  color: #f5f5f5;
  font-size: clamp(38px, 10vw, 52px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  text-align: center;
}

.link-list {
  display: flex;
  margin-top: 42px;
  gap: 38px;
}

.link-button {
  display: grid;
  width: auto;
  height: auto;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #e8e8e8;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease,
    color 180ms ease, transform 180ms ease;
}

.link-button:hover {
  color: #fff;
  transform: translateY(-2px);
}

.logo {
  display: block;
  width: 38px;
  height: 38px;
  overflow: visible;
  color: #9b9b9b;
  line-height: 1;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.logo-github {
  fill: currentColor;
  stroke: none;
}

.logo-filled {
  fill: currentColor;
  stroke: none;
}

.logo-discord {
  fill: currentColor;
  stroke: none;
}

@media (max-width: 480px) {
  .profile {
    width: min(100% - 32px, 460px);
    padding: 24px 0;
  }

  .link-list {
    gap: 24px;
  }

  .link-button {
    width: auto;
    height: auto;
  }
}
