@font-face {
  font-family: "jikitourai.regular";
  src: url("../fonts/jikitourai.regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Ioskeley";
  src: url("../fonts/Ioskeley.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
}

:root {
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  font-family: "Ioskeley", "jikitourai.regular";
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(100%, 52rem);
  padding: 1.5rem;
}

img {
  display: block;
  width: min(480px, 70vw);
  max-width: 100%;
  height: auto;
}

.install-command-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: auto;
  max-width: min(100%, 34rem);
}

.install-command {
  display: block;
  flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  overflow-x: auto;
  border: 1px solid #d8d8d8;
  border-radius: 0.625rem;
  background: #f7f7f7;
  color: #111111;
  font-family: "Ioskeley", "jikitourai.regular";
  font-size: 0.78rem;
  line-height: 1.35;
  white-space: nowrap;
}

.copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: #b8b8b8;
  cursor: pointer;
  transition: color 120ms ease, transform 120ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  color: #000000;
  transform: translateY(-1px);
}

.copy-button svg {
  width: 1rem;
  height: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  color: #b8b8b8;
  text-decoration: none;
  transition: color 120ms ease, transform 120ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #000000;
  transform: translateY(-1px);
}

.social-link svg {
  width: 2rem;
  height: 2rem;
}
