/* Dowd Innovative Concepts temporary landing page */
:root {
  --graphite-black: #1F2329;
  --page-black: #0A1014;
  --electric-blue: #0077C8;
  --bright-silver: #C9D1D9;
}

* { box-sizing: border-box; }

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

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at center, rgba(31, 35, 41, 0.95) 0%, var(--page-black) 68%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.splash {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 5rem);
}

.logo {
  display: block;
  width: min(82vw, 560px);
  height: auto;
}

@media (max-width: 480px) {
  .logo {
    width: min(90vw, 420px);
  }
}
