@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&display=swap");

/* variables, reset, typography, utilities */

:root {
  --primary-white: #eeeeee;
  --primary-black: #141414;
  --dark-grey: #2f2f2f;
  --light-grey: #bababa;
  --light-green: #c8cdbd;
  --grey-see-through: #2f2f2faf;

  --ff-heading: "Libre Baskerville", serif;
  --ff-body: "Lato", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  background: none;
  border-radius: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  color: var(--primary-white);
  font-weight: 400;
  margin-top: 0.5rem;
}

h1 {
  font-size: 3.75rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

p,
span,
a,
li {
  font-size: 1rem;
  font-family: var(--ff-body);
  color: var(--primary-white);
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.5;
}

li {
  line-height: 1.6;
}

ul,
ol {
	padding-left: 1.75rem;
}

label {
  font-family: var(--ff-body);
  font-weight: 500;
}

section {
  width: 100%;
}

.max-width {
  max-width: 1200px;
  margin: 0 auto;
}

.light {
  color: var(--light-green);
}

.dark {
  color: var(--dark-grey);
}

.txt-center {
  text-align: center;
}

.sm-grey {
  color: var(--light-grey);
  font-size: 0.875rem;
}

@media (max-width: 1000px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  p,
  li {
    font-size: 0.875rem;
  }
}

@media (max-width: 500px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.05rem;
  }

  p,
  li {
    font-size: 0.75rem;
  }
}
