/* UnityDB Studio Theme Override - Exact Match */

:root {
  --brand-blue: #008CE2;
  --brand-blue-hover: #007acc;
  --bg-primary: #09090b;
  --bg-secondary: #18181b;
  --bg-tertiary: #27272a;
  --text-primary: #fafafa;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --border-default: #3f3f46;
  --border-subtle: #27272a;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
  background-color: var(--bg-primary) !important;
  background: var(--bg-primary) !important;
  color: var(--text-primary) !important;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Shader background container - MUST be visible */
#shader-background {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}

/* Hide shader when mobile nav is open */
body.mobile-nav-active #shader-background,
body.mobile-nav-active #root {
  visibility: hidden;
}

#shader-background canvas {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Dark background on html only - this shows through transparent areas of shader */
html {
  background: var(--bg-primary) !important;
}

body {
  background: transparent !important;
}

/* Make ALL content layers transparent so shader shows through */
#root,
#root > div,
#root > div > div,
#root > div > main,
#root > div > section {
  background: transparent !important;
}

/* Override Tailwind gradient backgrounds on the main page wrapper */
.min-h-screen.bg-gradient-to-br,
[class*="min-h-screen"][class*="bg-gradient"],
[class*="from-slate-950"],
[class*="via-slate-900"],
[class*="to-blue-950"] {
  background: transparent !important;
  background-image: none !important;
}

/* Ensure nav and footer are above shader */
.studio-nav {
  z-index: 100 !important;
}

.studio-footer {
  z-index: 10 !important;
  background: transparent !important;
}

/* Content should be above shader */
#root {
  position: relative !important;
  z-index: 1 !important;
}

/* Hide original React header/footer */
#root > div > nav:first-of-type,
#root > div > header:first-of-type {
  display: none !important;
}

#root footer,
#root > div > footer,
#root > div > div > footer {
  display: none !important;
}

/* Hide the React app's original copyright/footer section */
#root [class*="border-t"],
#root div[class*="text-center"][class*="text-gray"],
#root div[class*="py-"][class*="border-t"] {
  display: none !important;
}

/* Hide the bottom section/footer of the React app */
#root > div > div:last-child[class*="border-t"],
#root > div > div:last-child[class*="pt-"],
#root > div > div > div:last-child[class*="border-t"],
#root > div.min-h-screen > div:last-of-type {
  display: none !important;
}

/* Aggressively hide any footer-like sections at the bottom */
#root .border-t-white,
#root [class*="border-t-white"],
#root div[class*="py-4"][class*="text-center"] {
  display: none !important;
}

/* Studio Navigation - Exact Match */
.studio-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(39, 39, 42, 0.5);
}

.studio-nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.studio-nav .nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.studio-nav .nav-logo img {
  height: 32px;
}

.studio-nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.studio-nav .nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.studio-nav .nav-links a:hover {
  color: var(--text-primary);
}

.studio-nav .nav-cta {
  background: var(--brand-blue);
  color: white;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.studio-nav .nav-cta:hover {
  background: var(--brand-blue-hover);
}

/* Mobile Menu Toggle */
.studio-nav .mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.studio-nav .hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X animation */
.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Adjust main content for fixed header */
#root {
  padding-top: 70px;
}

/* Override React app text colors for dark theme */
#root .text-gray-900,
#root .text-gray-800 {
  color: var(--text-primary) !important;
}

#root .text-gray-700,
#root .text-gray-600 {
  color: var(--text-secondary) !important;
}

#root .text-gray-500,
#root .text-gray-400 {
  color: var(--text-muted) !important;
}

/* Override backgrounds */
#root .bg-white,
#root .bg-gray-50,
#root .bg-gray-100 {
  background-color: var(--bg-secondary) !important;
}

#root .bg-white\/40,
#root .bg-white\/50,
#root .bg-white\/60 {
  background-color: rgba(24, 24, 27, 0.8) !important;
}

/* Override borders */
#root .border-gray-200,
#root .border-gray-300 {
  border-color: var(--border-default) !important;
}

/* Override card styles */
#root [class*="rounded-"] {
  border-color: var(--border-subtle);
}

/* Fix card/box backgrounds - make them dark glass effect */
#root [class*="rounded-"][class*="bg-white"],
#root [class*="rounded-"][class*="bg-slate"],
#root [class*="rounded-"][class*="bg-gray"],
#root [class*="shadow-"],
#root [class*="backdrop-blur"],
#root div[class*="rounded-2xl"],
#root div[class*="rounded-xl"],
#root div[class*="rounded-lg"] {
  background: rgba(9, 9, 11, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid var(--border-subtle) !important;
  transition: box-shadow 0.3s ease, transform 0.3s ease !important;
}

/* Blue glow shadow on hover/focus for cards */
#root div[class*="rounded-2xl"]:hover,
#root div[class*="rounded-xl"]:hover,
#root div[class*="rounded-lg"]:hover {
  box-shadow: 0 0 20px rgba(0, 140, 226, 0.4), 0 0 40px rgba(60, 162, 250, 0.2), 0 0 60px rgba(0, 212, 255, 0.1) !important;
}

#root div[class*="rounded-2xl"]:focus-within,
#root div[class*="rounded-xl"]:focus-within,
#root div[class*="rounded-lg"]:focus-within {
  box-shadow: 0 0 20px rgba(0, 140, 226, 0.4), 0 0 40px rgba(60, 162, 250, 0.2), 0 0 60px rgba(0, 212, 255, 0.1) !important;
}

/* Preserve gradient text colors - but not for buttons */
#root [class*="bg-clip-text"]:not(button *):not([class*="btn"] *),
#root [class*="text-transparent"]:not(button *):not([class*="btn"] *) {
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
}

/* Make sure button text is visible and style buttons */
#root button,
#root button span,
#root a[class*="bg-gradient"],
#root a[class*="bg-gradient"] span,
#root [class*="btn"],
#root [class*="btn"] span {
  color: white !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
}

/* Blue button styling - high specificity to override card styles */
#root button[class*="rounded"],
#root a[class*="rounded"][class*="bg-gradient"],
#root button[class*="px-"][class*="rounded-"],
#root button[class*="py-"][class*="rounded-"],
#root button.rounded-xl,
#root button.rounded-lg,
#root button.rounded-2xl {
  background: var(--brand-blue) !important;
  background-image: none !important;
  border: none !important;
}

/* Form input fields - make them visible */
#root input[type="text"],
#root input[type="email"],
#root input[type="password"],
#root input[type="tel"],
#root input[type="url"],
#root input[type="search"],
#root input:not([type]),
#root textarea,
#root select {
  background: rgba(15, 23, 42, 0.9) !important;
  border: 1px solid rgba(71, 85, 105, 0.5) !important;
  color: #fafafa !important;
  padding: 16px 48px 16px 20px !important;
  border-radius: 12px !important;
  width: 100% !important;
  font-size: 1rem !important;
  min-height: 56px !important;
  box-sizing: border-box !important;
}

#root textarea {
  min-height: 120px !important;
  padding: 16px 20px !important;
  resize: vertical !important;
}

#root input::placeholder,
#root textarea::placeholder {
  color: rgba(148, 163, 184, 0.8) !important;
}

#root input:focus,
#root textarea:focus,
#root select:focus {
  outline: none !important;
  border-color: #0ea5e9 !important;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15) !important;
}

/* Style select/dropdown */
#root select {
  appearance: none !important;
  cursor: pointer !important;
}

/* Form field wrapper/container styling */
#root div[class*="relative"] > input,
#root div[class*="relative"] > textarea {
  padding-right: 48px !important;
}

/* Checkbox styling - native inputs */
#root input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  padding: 0 !important;
  border-radius: 6px !important;
  accent-color: var(--brand-blue) !important;
  cursor: pointer !important;
}

#root input[type="checkbox"]:checked {
  background-color: var(--brand-blue) !important;
  border-color: var(--brand-blue) !important;
}

/* Custom checkbox divs - unchecked state */
#root div[class*="w-5"][class*="h-5"][class*="border-2"][class*="rounded-md"],
#root div[class*="w-6"][class*="h-6"][class*="border-2"][class*="rounded-md"] {
  background: rgba(255, 255, 255, 0.5) !important;
  border-color: #9ca3af !important;
  backdrop-filter: blur(4px) !important;
}

/* Custom checkbox divs - checked state (when has bg-blue, gradient, or brand colors) */
#root div[class*="w-5"][class*="h-5"][class*="border-2"][class*="rounded-md"][class*="bg-blue"],
#root div[class*="w-6"][class*="h-6"][class*="border-2"][class*="rounded-md"][class*="bg-blue"],
#root div[class*="w-5"][class*="h-5"][class*="border-2"][class*="rounded-md"][class*="border-blue"],
#root div[class*="w-6"][class*="h-6"][class*="border-2"][class*="rounded-md"][class*="border-blue"],
#root div[class*="w-5"][class*="h-5"][class*="border-2"][class*="rounded-md"][class*="bg-gradient"],
#root div[class*="w-6"][class*="h-6"][class*="border-2"][class*="rounded-md"][class*="bg-gradient"],
#root div[class*="w-5"][class*="h-5"][class*="border-2"][class*="rounded-md"][class*="from-blue"],
#root div[class*="w-6"][class*="h-6"][class*="border-2"][class*="rounded-md"][class*="from-blue"] {
  background: var(--brand-blue) !important;
  background-image: linear-gradient(to right, #008CE2, #0ea5e9) !important;
  border-color: var(--brand-blue) !important;
}

/* Newsletter section styling */
#root div[class*="border"][class*="rounded"]:has(input[type="checkbox"]) {
  border-color: var(--brand-blue) !important;
  background: rgba(14, 165, 233, 0.05) !important;
}

/* Checkmark/tick icons - make circular and smaller */
#root svg[class*="text-green"],
#root div[class*="text-green"] svg,
#root div[class*="bg-green"] {
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  min-height: 20px !important;
  padding: 4px !important;
}

/* Hide Get Priority Beta Access button */
#root button.from-blue-600.to-cyan-600,
#root button[class*="from-blue-600"][class*="to-cyan-600"] {
  display: none !important;
}

/* Hide Get Beta Access section */
#beta-form {
  display: none !important;
}

/* Hide UnityDB h1 heading with -mb-4 */
#root div[class*="-mb-4"][class*="flex"][class*="items-center"][class*="justify-center"]:has(h1) {
  display: none !important;
}

/* Fallback for browsers without :has support */
#root h1.from-blue-400.via-cyan-400.to-blue-500,
#root h1[class*="from-blue-400"][class*="via-cyan-400"] {
  display: none !important;
}

/* Make database and chevron-down icons white */
#root svg.lucide-database,
#root svg.lucide-chevron-down {
  color: white !important;
  stroke: white !important;
}

#root svg.lucide-database *,
#root svg.lucide-chevron-down * {
  stroke: white !important;
}



/* Hero card with glowing border - ONLY the main tagline card */
.hero-glow-card {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: rgba(9, 9, 11, 0.85) !important;
  border: 1px solid transparent !important;
}

.hero-glow-card > * {
  position: relative !important;
  z-index: 10 !important;
}

/* Smooth rotating glow border - ONLY for hero card */
.hero-glow-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #00d4ff 0%, #3ca2fa 25%, #008CE2 45%, transparent 65%);
  filter: blur(12px);
  opacity: 0.85;
  animation: orbitBorder 4s linear infinite;
  z-index: 0;
  pointer-events: none;
}

/* Dark inner background - ONLY for hero card */
.hero-glow-card::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: rgba(9, 9, 11, 0.97);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

/* Adjusted timing for constant speed */
@keyframes orbitBorder {
  0% {
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
  }
  20% {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  40% {
    top: 0%;
    left: 100%;
    transform: translate(-50%, -50%);
  }
  45% {
    top: 50%;
    left: 100%;
    transform: translate(-50%, -50%);
  }
  50% {
    top: 100%;
    left: 100%;
    transform: translate(-50%, -50%);
  }
  70% {
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  90% {
    top: 100%;
    left: 0%;
    transform: translate(-50%, -50%);
  }
  95% {
    top: 50%;
    left: 0%;
    transform: translate(-50%, -50%);
  }
  100% {
    top: 0%;
    left: 0%;
    transform: translate(-50%, -50%);
  }
}

/* Specific fix for main content cards/boxes */
#root .bg-white\/5,
#root .bg-white\/10,
#root .bg-white\/20,
#root .bg-slate-900,
#root .bg-slate-800,
#root .bg-slate-900\/50,
#root .bg-slate-800\/50 {
  background: rgba(9, 9, 11, 0.6) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

/* Override any remaining light backgrounds in cards - but not buttons */
#root div[class*="p-"][class*="rounded-"],
#root div[class*="px-"][class*="rounded-"],
#root div[class*="py-"][class*="rounded-"],
#root section[class*="p-"][class*="rounded-"] {
  background: rgba(9, 9, 11, 0.7) !important;
}

/* Ensure buttons stay blue after card overrides */
#root button[class*="bg-gradient"],
#root button[class*="rounded"] {
  background: var(--brand-blue) !important;
  background-image: none !important;
}

/* Studio Footer - Exact Match */
.studio-footer {
  position: relative;
  padding: 4rem 2rem 2rem;
  border-top: 1px solid var(--border-subtle);
  overflow: hidden;
  margin-top: 4rem;
}

.studio-footer .footer-gradient-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(125% 125% at 50% 10%, #0F0F1166 50%, #3ca2fa33 100%);
  pointer-events: none;
}

.studio-footer .footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 3rem;
}

.studio-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.studio-footer .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.studio-footer .footer-logo img {
  height: 28px;
}

.studio-footer .footer-tagline {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 280px;
}

.studio-footer .footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.studio-footer .footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.studio-footer .footer-nav-section h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.studio-footer .footer-nav-section a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  position: relative;
}

.studio-footer .footer-nav-section a:hover {
  color: #3ca2fa;
  transform: translateX(4px);
}

.studio-footer .footer-nav-section a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: #3ca2fa;
  transition: width 0.2s ease;
}

.studio-footer .footer-nav-section a:hover::before {
  width: 6px;
}

.studio-footer .footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.studio-footer .footer-copyright {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.studio-footer .footer-social {
  display: flex;
  gap: 1rem;
}

.studio-footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(60, 162, 250, 0.1);
  border: 1px solid rgba(60, 162, 250, 0.2);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.studio-footer .footer-social a:hover {
  background: rgba(60, 162, 250, 0.2);
  border-color: #3ca2fa;
  color: #3ca2fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(60, 162, 250, 0.2);
}

.studio-footer .footer-social svg {
  width: 18px;
  height: 18px;
}

/* Footer Watermark */
.studio-footer .footer-watermark {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: visible;
  pointer-events: none;
  z-index: 0;
}

.studio-footer .watermark-logo {
  width: 100%;
  max-width: 600px;
  height: auto;
  opacity: 1;
}

.studio-footer .watermark-logo .scan-layer {
  opacity: 0.9;
}

/* Mobile Navigation Overlay */
.studio-nav .nav-links.mobile-nav-open {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #09090b !important;
  background-color: #09090b !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 2rem !important;
  gap: 0.5rem;
  z-index: 99999 !important;
  animation: fadeIn 0.3s ease;
  overflow-y: auto;
  margin: 0 !important;
}

/* Ensure mobile nav is above everything */
.studio-nav .nav-links.mobile-nav-open::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #09090b;
  z-index: -1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.studio-nav .nav-links.mobile-nav-open li {
  border-bottom: none;
  background: transparent !important;
  list-style: none;
  position: relative;
  z-index: 100000;
  text-align: center;
  width: 100%;
}

.studio-nav .nav-links.mobile-nav-open a {
  display: block;
  padding: 0.85rem 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: #a1a1aa !important;
  background: transparent !important;
  text-decoration: none;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  position: relative;
  z-index: 100000;
  text-align: center;
  transition: color 0.2s ease;
}

.studio-nav .nav-links.mobile-nav-open a:hover {
  color: #fafafa !important;
}

/* X close button style for mobile menu */
.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  background: #fafafa;
}

.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.studio-nav .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  background: #fafafa;
}

.studio-nav .mobile-menu-toggle.active {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 100001;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .studio-nav {
    padding: 0.875rem 1rem;
  }

  .studio-nav .nav-links:not(.mobile-nav-open) {
    display: none;
  }

  .studio-nav .mobile-menu-toggle {
    display: flex;
  }

  .studio-nav .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }

  .studio-footer .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .studio-footer .footer-brand {
    text-align: center;
    align-items: center;
  }

  .studio-footer .footer-nav {
    text-align: center;
  }

  .studio-footer .footer-nav-section {
    align-items: center;
  }

  .studio-footer .footer-nav-section h4 {
    text-align: center;
  }

  .studio-footer .footer-nav-section a {
    text-align: center;
  }

  .studio-footer .footer-nav-section a::before {
    display: none;
  }

  .studio-footer .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }

  .studio-footer .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .studio-footer .footer-watermark {
    height: 140px;
    bottom: -70px;
  }

  .studio-footer .watermark-logo {
    max-width: 450px;
  }
}

@media (max-width: 480px) {
  .studio-footer .footer-nav {
    grid-template-columns: 1fr;
  }

  .studio-footer .footer-watermark {
    height: 100px;
    bottom: -50px;
  }

  .studio-footer .watermark-logo {
    max-width: 300px;
  }
}
