:root {
  /* Update these 3 to match your logo theme */
  --brand: #0a0a36;
  --accent: #ee971e;
  --soft: #dedff3;

  --bg: #ffffff;
  --text: #0b1020;
  --muted: #5a6475;
  --border: rgba(16, 24, 40, 0.12);
  --shadow: 0 14px 40px rgba(16, 24, 40, 0.1);
  --radius: 18px;
  --container: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    "Nunito",
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
}
.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}
.designrush-award {
    width: 130px;
}
.google-logo {
    height: 94px;
    width: 158px;
}