@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
:root {
  --frost-500: #f5f7fa;
  --frost-600: hsl(216, 8%, 88%);
  --charcoal-500: #3c4c5b;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--frost-500);
  color: white;
  font-family: "Outfit", sans-serif;
}

.odoo-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  position: fixed;
}

.odoo-nav {
  width: 100%;
  z-index: 9999;
  height: 60px;
  max-width: 44.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0.6rem;
  border-radius: 3.75rem;
  border: 1px solid var(--frost-600);
  background: var(--frost-500, #f5f7fa);
}

.odoo-nav-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
}

.odoo-list-item {
  color: var(--charcoal-500);
}

.odoo-logo {
  margin-left: 1rem;
}

.odoo-button {
  display: flex;
  padding: 0.625rem 1.66875rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  border-radius: 3.75rem;
  background: var(
    --grad,
    linear-gradient(
      90deg,
      var(--ocean-500, #0ea5e9) 0%,
      var(--teal-500, #07b6d4) 74.07%
    )
  );

  text-decoration: none;
  color: var(--frost-500);
}
