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

:root {
  --color-primary: #13ee85;
  --color-dark: #0a0e03;
  --color-dark-alt: #0b0f04;
  --color-dark-card: #1f201d;
  --color-border: #3c3e39;
  --color-white: #ffffff;
  --color-gray: #858585;
  --color-input-bg: #161616;
  --font-main: "Montserrat", sans-serif;
  --font-logo: "Oleo Script Swash Caps", cursive;
  --font-dm: "DM Sans", sans-serif;
  --font-lato: "Lato", sans-serif;
  --radius-pill: 32px 2px 32px 2px;
  --max-width: 1320px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background: var(--color-dark);
  color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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 {
  line-height: 1.2;
}

.btn {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 32px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  padding: 16px 16px 16px 64px;
  transition: opacity 0.3s;
  width: fit-content;
}

.btn:hover {
  opacity: 0.9;
}

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

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

.section-label {
  display: block;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

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