:root {
  color-scheme: light;
  --page-bg: #f7f3ec;
  --text: #202124;
  --muted: #5f6368;
  --accent: #f26a21;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 35%, #fffaf2 0, var(--page-bg) 48%, #efe7da 100%);
}

.studio {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 24px;
  padding: 32px;
  text-align: center;
}

.studio__icon {
  width: clamp(96px, 18vw, 160px);
  height: clamp(96px, 18vw, 160px);
  border-radius: 28%;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(32, 33, 36, 0.14);
}

.studio__name {
  margin: 0;
  font-size: clamp(2.25rem, 7vw, 5rem);
  line-height: 1;
  font-weight: 760;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .studio {
    gap: 18px;
    padding: 24px;
  }

  .studio__icon {
    border-radius: 24%;
  }
}
