@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;800;900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pri: #006636;
  --sec: #ffffff;
}

body {
  font-family: "Barlow", sans-serif;
  background-color: var(--pri);
  color: var(--sec);
  font-size: 1.25rem;
  line-height: 1.5;
}

h1 {
  text-align: center;
}

.page-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 45em;
  margin-inline: auto;
  gap: 1rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 0.5rem;
}

img {
  width: 20em;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

label {
  width: 100%;
}

textarea {
  height: 14rem;
}

input,
textarea {
  font-family: "Barlow", sans-serif;
  font-size: 1.25rem;
  padding: 0.25em;
  margin: 0.25em;
  width: calc(100% - 1.5em);
}

button {
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.5em 2.5rem;
  background-color: var(--pri);
  color: var(--sec);
  border: solid var(--sec) 0.1rem;
  border-radius: 1rem;
  transition: all 250ms ease-in-out;
}
button:hover {
  --pri: #ffffff;
  --sec: #006636;
}/*# sourceMappingURL=style.css.map */