:root {
  --blue: #1a78c0;
  --blue-bright: #2a9adf;
  --ink: rgba(255, 255, 255, 0.72);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  height: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 0.9rem;
  background:
    radial-gradient(ellipse 80% 55% at 50% 32%, rgba(42, 154, 223, 0.42) 0%, rgba(26, 120, 192, 0.22) 38%, transparent 68%),
    radial-gradient(ellipse 120% 50% at 50% -10%, rgba(26, 120, 192, 0.35), transparent 55%),
    #000;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 2rem;
}

.domain {
  margin: 0;
  color: #fff;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  text-align: center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.35));
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.4rem 1.5rem 2.2rem;
}

.by {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.by:hover {
  color: #fff;
}

.by img {
  display: block;
  height: 1.55rem;
  width: auto;
}
