html {
  box-sizing: border-box;
  font-size: 16px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

html {
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

body {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
  background: black;
  color: white;
}

p {
  margin-bottom: 1rem;
}

.container {
  max-width: 48rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
}

h2, h3 {
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 1em;
  font-weight: 300;
}

h2 {
  font-weight: 700;
}

input {
  display: block;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  border-radius: 100px;
  width: 30rem;
  max-width: 100%;
  margin-bottom: 1rem;
  font-size: .875rem;
  padding: .625rem 2rem;
}

button {
  height: 2.5rem;
  padding: 0 3rem;
  line-height: 2.5rem;
  background: white;
  color: black;
  border: 0;
  border-radius: 100px;
  font-weight: 500;
  font-size: .875rem;
  text-transform: uppercase;
  cursor: pointer;
}

#header {
  padding-block: 7.375rem;
  text-align: center;
  position: relative;
}

/* #header::before {
  content: "";
  background: url("leaves-1.png") no-repeat;
  z-index: -1;
  position: absolute;
  top: 50px;
  left: -60px;
  width: 439px;
  height: 619px;
} */

#header .leaves {
  position: absolute;
  top: 50px;
  left: -60px;
  z-index: -1;
}

#header figure {
  margin-bottom: 4rem;
}

#header h3 {
  width: 32rem;
  max-width: 100%;
  margin-inline: auto;
}

#content {
  position: relative;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

#content .leaves {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -100px;
}

#newsletter {
  padding: 3rem 0;
  text-align: center;
}

#newsletter input {
  margin: 1rem auto 2rem;
  text-align: center;
}

#partners {
  padding-block: 4rem;
  text-align: center;
}

#partners h3 {
  border-bottom: 1px solid white;
  padding-bottom: 1rem;
  margin-bottom: 3rem
}

#partners .container > div {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

#footer {
  padding-block: 4rem;
  text-align: center;
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: url("leaves-3.png") no-repeat;
  z-index: -1;
  width: 272px;
  height: 175px;
}





@media only screen and (max-width: 1024px) {
  #header .leaves {
    width: 240px;
  }

  #content .leaves {
    width: 200px;
  }
}
