@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;700&display=swap");
body {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  font-family: "Work Sans", sans-serif;
  background-color: white;
  width: 100vw;
}

.nav {
  width: 100%;
  height: 4rem;
  background-color: #FFD744;
  padding-right: 4rem;
}
.nav__links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.nav__links--button {
  margin-right: 1rem;
  height: 2rem;
  width: 4rem;
  border: none;
  border-radius: 1rem;
  background-color: #ED6EA7;
}

.header {
  position: relative;
  width: 100%;
}
.header__image {
  height: 400px;
  background-color: #00A5C8;
}
.header__title {
  position: absolute;
  bottom: 1rem;
  right: 6rem;
  padding: 0.5rem 1rem;
  background-color: #ED6EA7;
  font-size: 48px;
  font-weight: 700;
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 1000px;
}
.content__summary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 70%;
  height: 100%;
  background-color: #FFD744;
}
.content__summary--title {
  font-weight: 700;
  font-size: 32px;
  margin: 0;
  padding: 1rem 2rem;
  background-color: #00A5C8;
}
.content__summary--text {
  margin: 0 2rem 3rem 2rem;
  font-weight: 300;
  font-size: 24px;
}
.content__image {
  height: 600px;
  width: 70%;
  background-color: #00A5C8;
}

.petition {
  width: 50%;
  background-color: #FFD744;
}
.petition__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  height: 400px;
}
.petition__form--callout {
  font-size: 32px;
}
.petition__form--submit {
  font-size: 24px;
  font-weight: 700;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  background-color: #ED6EA7;
}

.footer {
  width: 100%;
  height: 6rem;
  background-color: #00A5C8;
}
.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5px;
}
.footer__links--button {
  margin-right: 1rem;
  height: 4rem;
  width: 4rem;
  border: none;
  border-radius: 2rem;
  background-color: #FFD744;
}
.footer__credits {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #00A5C8;
}
.footer__credits--link {
  text-decoration: none;
  color: black;
  margin-bottom: 8px;
}/*# sourceMappingURL=style.css.map */