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

:root {
  --bs-primary-rgb: rgb(10, 37, 64) !important;
  /* --bs-body-bg: #f6f9fc !important; */
}

body {
  /* --bs-body-bg: #f6f9fc; */
  background: var(--color-primary);
  color: var(--color-text-primary);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

/* 
  CSS Grid
*/
body {
  height: 100vh;

  /* grid container settings */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    'header'
    'main'
    'footer';
}

body>header {
  grid-area: header;
}

body>main {
  grid-area: main;
}

body>footer {
  grid-area: footer;
}

a {
  text-decoration: none !important;
}

a,
a:hover {
  --titleColor: #0a2540;
  color: var(--titleColor);
}

p {
  color: var(--color-text-secondary);
  margin: 0;
}

header {
  margin: var(--20px) auto 0;
}

ul {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

pre {
  background: var(--color-green800);
  color: var(--color-white);
  border-radius: 8px;
  padding: 8px;
}

pre code {
  background: none;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
  overflow-x: scroll;
  max-width: 100%;
  min-width: 100px;
  padding: 0;
}

.nav-masthead {
  background: var(--color-backdrop);
  backdrop-filter: blur(5px) saturate(1.7);
  -webkit-backdrop-filter: blur(5px) saturate(1.7);
  border-radius: 50px;
  padding: 10px;
  transition: all .2s linear;
}

.nav-masthead .nav-link {
  color: var(--color-text-secondary);
  margin: 0;
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .nav-masthead .nav-link {
    margin: 0 1.5rem;
    padding: 0.5rem;
  }
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  color: var(--color-text-secondary);
}

.nav-masthead .active {
  color: var(--color-text-secondary);
}

.text-slate-200 {
  --titleColor: #0a2540;
  color: var(--titleColor);
}

.text-slate-500 {
  --textColor: #212529;
  color: var(--textColor);
}



section {
  padding: 0;
}

.group:hover .lg\:group-hover\:bg-slate-800\/50 {
  background-color: rgba(30, 41, 59, .05);
}

.bg-teal-400\/10 {
  --titleColor: #0a2540;
  background-color: var(--titleColor);
}

.text-teal-300 {
  --bs-gray-100: #f8f9fa;
  color: var(--bs-gray-100);
}

.text-xs {
  font-weight: 200;
}

.text-sm {
  font-weight: 200;
}

.text-md {
  font-weight: 400;
}

.badge {
  background-color: var(--color-primary-accent);
  color: var(--color-text-tertiary);
  font-weight: 200;
}

.blog-content {
  font-size: 1.2rem;
  background: var(--color-backdrop);
  overflow-wrap: break-word;
  border-radius: 8px;
  padding: 4rem;
}