@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Yeseva+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Yeseva+One&display=swap");
body {
  font-size: clamp(0.85rem, 4vw, 1rem);
  font-family: "Josefin Sans", serif;
  margin: 0;
  padding: 0;
  color: #25424c;
  background-color: #fffef2;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Yeseva One", serif;
  margin: 0 0 1rem 0;
  line-height: 1;
  color: #25424c;
}

h1, .stats .stats-content .stat .stat-emphasis {
  font-size: clamp(2.125rem, 4vw, 3.5rem);
}

h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 4vw, 2rem);
}

h4, .main h2 {
  font-size: clamp(1.125rem, 4vw, 1.5rem);
}

h5, .community .community-content .community-list .community-item {
  font-size: clamp(1.025rem, 4vw, 1.125rem);
}

h6, .board ul.board-list li {
  font-size: clamp(1rem, 4vw, 1.025rem);
}

html {
  margin: 0;
  padding: 0;
  line-height: 1.4;
  scroll-behavior: smooth;
  text-wrap: pretty;
}

.center {
  width: 90%;
  margin: auto;
  max-width: 75rem;
}

.button-wrapper {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

nav {
  background-color: #25424c;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}
nav .nav-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0.75rem 0;
}
nav .nav-wrapper img {
  height: 4rem;
}
@media (min-width: 31.25rem) {
  nav .nav-wrapper img {
    height: 6.5rem;
  }
}
nav .nav-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}
nav .nav-wrapper ul a {
  color: #fffef2;
  text-decoration: none;
}
nav .nav-wrapper ul a:hover, nav .nav-wrapper ul a:focus {
  color: #88B4A2;
}

.main {
  background: url(./images/img-lake-green2.jpg) no-repeat center 45%/cover;
  padding: 5vw 0 19vw;
}
@media (max-width: 25rem) {
  .main {
    background: none;
    padding: 0;
  }
  .main .center {
    width: 100%;
    max-width: 100%;
  }
  .main .center .main-content {
    width: 90%;
    margin: auto;
    max-width: 75rem;
    padding: 5vw 0;
  }
  .main .center .main-content h2 {
    margin-bottom: 0rem;
  }
  .main .center::before {
    content: "";
    background: url(./images/img-lake-green2.jpg) no-repeat center/cover;
    height: 35vw;
    width: 100%;
    display: block;
  }
}
.main h1, .main h2 {
  text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.4);
}
.main h1 {
  margin-bottom: 0.5rem;
}
.about {
  padding: 5vw 0;
  background-color: #d5e2d4;
}
.about .about-wrapper {
  display: grid;
}
.about .about-wrapper p:last-of-type {
  margin-bottom: 0;
}
.about .about-wrapper a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-family: "Yeseva One", serif;
  background-color: #25424c;
  color: #fffef2;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  transition: 0.3s ease all;
}
.about .about-wrapper a:hover, .about .about-wrapper a:focus {
  background-color: #39655c;
  color: #fffef2;
}
@media (max-width: 50rem) {
  .about .about-wrapper {
    gap: 1.5rem;
  }
  .about .about-wrapper::after {
    background: url(./images/img-lake-green.jpg) no-repeat center 35%/cover;
    content: "";
    display: block;
    width: 100%;
    height: 35vw;
    border-radius: 5px;
  }
}
@media (min-width: 50rem) {
  .about .about-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about .about-wrapper::after {
    background: url(./images/img-lake-green.jpg) no-repeat center/cover;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 5px;
  }
  .about .about-wrapper .about-content {
    padding: 2rem 0;
  }
}

.stats {
  padding: 3vw 0;
  background-color: #25424c;
}
.stats .stats-content {
  display: grid;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  text-align: center;
}
.stats .stats-content .stat {
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
}
.stats .stats-content .stat .stat-emphasis {
  font-family: "Yeseva One", serif;
  text-transform: uppercase;
  color: #88B4A2;
}
.stats .stats-content .stat .stat-details {
  font-size: clamp(1.0125rem, 4vw + 1rem, 1.125rem);
  color: #fffef2;
}
@media (min-width: 50rem) {
  .stats .stats-content {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    gap: 0.25rem;
    max-width: 100%;
  }
}

.community {
  padding: 5vw 0;
  background-color: #39655c;
}
.community h2 {
  text-align: center;
  color: #d5e2d4;
  font-weight: 500;
}
.community .center {
  max-width: 62.5rem;
}
.community .community-content .community-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.community .community-content .community-list li ~ li {
  margin-top: 1rem;
}
.community .community-content .community-list .community-item {
  padding: 1rem 1rem;
  background-color: #d5e2d4;
  font-weight: 400;
  color: #25424c;
  border-radius: 5px;
}
@media (max-width: 37.5rem) {
  .community .community-content::before {
    content: "";
    display: block;
    background: url(./images/img-playground.jpg) no-repeat 70% center/cover;
    width: 100%;
    height: 35vw;
    margin-bottom: 1rem;
    border-radius: 5px;
  }
}
@media (min-width: 37.5rem) {
  .community .community-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: 1fr;
    align-items: center;
    padding-top: 3rem;
    margin-bottom: 3.5vw;
  }
  .community .community-content::before {
    background: url(./images/img-playground.jpg) no-repeat 70% center/cover;
    border-radius: 5px;
    content: "";
    display: block;
    height: 100%;
    margin: 0;
    width: 100%;
    padding: 2rem 0;
  }
  .community .community-content .community-list {
    margin-left: -0.5rem;
  }
  .community .community-content .community-list .community-item {
    padding-left: 1.25rem 1rem 1rem 1.25rem;
  }
  .community .community-content .community-list li ~ li {
    margin-top: 1.5rem;
  }
}

.board {
  padding: 5vw 0;
  background-color: #d5e2d4;
}
.board h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.board ul.board-list {
  margin: 0 auto 0;
  padding: 0;
  list-style-type: none;
  max-width: 59.375rem;
}
.board ul.board-list li {
  text-align: center;
  display: block;
  padding: 1rem;
  background-color: #25424c;
  color: #fffef2;
  border-radius: 5px;
}
.board ul.board-list li span {
  color: #88B4A2;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.board ul.board-list li ~ li {
  margin-top: 1rem;
}
@media (min-width: 31.25rem) {
  .board ul.board-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
  }
  .board ul.board-list li ~ li {
    margin-top: 0rem;
  }
}

.contact {
  padding: 5vw 0;
}
.contact .center {
  max-width: 59.375rem;
}
.contact .center h2 {
  margin-bottom: 2rem;
}
.contact .center ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact .center ul a {
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-family: "Yeseva One", serif;
  background-color: #25424c;
  color: #fffef2;
  padding: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  transition: 0.3s ease all;
}
.contact .center ul a:hover, .contact .center ul a:focus {
  background-color: #39655c;
  color: #fffef2;
}
@media (min-width: 43.75rem) {
  .contact .contact-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}/*# sourceMappingURL=styles.css.map */