:root {
  --color-primary: #0057b8;
  --color-text-dark: #000b19;
  --color-text-base: #3c4248;
  --color-text-light: #7a7f84;
  --color-text-subtle: #b0b6bd;
  --color-white: #ffffff;
  --color-background-light: #f0f4f5;
  --color-background-medium: #e1eef3;
  --color-background-accent: #baecff;
  --font-family-base: 'Rubik', sans-serif;
  --font-family-secondary: 'Overpass', sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-family-base);
  color: var(--color-text-base);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 24px 36px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dark {
  background-color: var(--color-text-base);
  color: var(--color-white);
}

.btn-dark:hover {
    background-color: var(--color-text-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-base);
  border: 1px solid var(--color-text-base);
}

.btn-outline:hover {
    background-color: var(--color-text-base);
    color: var(--color-white);
}