@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700;900&display=swap");
@import url("./classes.css");

:root {
  --color-primary: #ffec85;
  --color-secondary: #1f222b;
  --text-on-light: #1f222b;
  --text-on-light-alt: #10235a;
  --text-on-dark: #ffffff;
  --text-on-dark-alt: #ffec85;
  --section-space: 40px;
  --fs-n: 1rem;
  --fs-lg: 2.125rem;
  --fs-xlg: 2.375rem;
}
@media (min-width: 768px) {
  :root {
    --section-space: 80px;
    --fs-n: 1.125rem;
    --fs-xlg: 5.375rem;
    --fs-lg: 4.25rem;
  }
}
@media (min-width: 992px) {
  :root {
    --section-space: 80px;
    --fs-n: 1.75rem;
    --fs-lg: 4.25rem;
    --fs-xlg: 8rem;
  }
}
* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-size: var(--fs-n);
}
section {
  padding: var(--section-space) 0px;
}

a {
  text-decoration: none;
  color: white;
}
ul,
ol {
  display: block;
  list-style: none;
}

body {
  line-height: 1.3;
  -webkit-font-smoothing: antialiased;
}

input,
button,
textarea,
select {
  font: inherit;
  transition: 0.5s ease;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}
h1,
h2 {
  font-weight: 900;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
hr {
  background: var(--color-primary);
  height: 1px;
  border-width: 0;
}
button {
  background-color: transparent;
  outline: 0;
  border: 0;
  cursor: pointer;
  transition: 0.5s ease;
}
