:root {
  --color-primary: #261893;
  --color-accent: #99ff5e;
  --color-white: #ffffff;
  --color-dark: #261893;
  --font-primary: "Montserrat", sans-serif;
  --font-display: "Permanent Marker", cursive;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
  background: var(--color-primary);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1.1;
}

.btn {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 64px;
  border-radius: 1000px;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 18px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    opacity 0.2s,
    transform 0.2s;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-primary);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  width: fit-content;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  padding: 12px 32px;
}

.btn--small {
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px 10px 32px;
  gap: 8px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .btn {
    font-size: 16px;
    padding: 14px 14px 14px 40px;
    gap: 12px;
  }

  .btn--small {
    font-size: 13px;
    padding: 8px 10px 8px 24px;
  }
}
