* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Helvetica, Arial, sans-serif;
  color: #323232;
  height: 2000px;
}

a {
  text-decoration: none;
  color: #323232;
}

.link {
  color: #323232;
  text-decoration: none;
  border-bottom: 0.3em solid #C2E7D9;
}
@media (min-width: 800px) {
  .link {
    text-decoration: none;
    border-bottom: none;
  }
}

.link:hover {
  text-decoration-thickness: 0.3em;
  border-bottom: 0.3em solid #C2E7D9;
}

.button {
  background-color: #6A66A3;
  border-radius: 15em;
  padding-inline: 20vw;
  padding-block: 0.5em;
  color: white;
  border: 0.3em solid #6A66A3;
  text-decoration: none;
}
@media (min-width: 800px) {
  .button {
    padding-inline: 1.5em;
  }
}

.button:hover {
  border: 0.3em solid #C2E7D9;
  text-decoration: none;
}

header {
  background-color: white;
  padding-block: 1em;
  padding-inline: 15%;
  box-shadow: 0px -46px 51px 20px rgba(0, 0, 0, 0.45);
}
@media (min-width: 800px) {
  header {
    position: sticky;
    top: 0;
    padding-block: 0.5em;
  }
}
header nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media (min-width: 800px) {
  header nav {
    justify-content: space-between;
    flex-direction: row;
    margin-block: 0.5em;
  }
}
header nav img {
  max-height: 4em;
}
header nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  list-style-type: none;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 1em;
}
@media (min-width: 800px) {
  header nav ul {
    justify-content: end;
    align-items: end;
    flex-direction: row;
  }
}
header nav ul li {
  margin-block: 1em;
  padding-inline: 0.5em;
  white-space: nowrap;
}

main {
  margin-inline: 5%;
}
@media (min-width: 800px) {
  main {
    margin-inline: 15%;
  }
}

.section1 {
  margin-top: 1.5em;
  max-height: 80vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #FFF5F8;
  border: 0em solid #FFF5F8;
  border-radius: 1em;
}
.section1 h2 {
  order: 1;
  text-align: left;
  margin-left: 1em;
  margin-top: 4em;
  margin-bottom: 1em;
}
.section1 h2 span {
  font-weight: bold;
  font-size: xx-large;
  margin-right: 0.6em;
}
.section1 img {
  order: 2;
  min-width: 100%;
  overflow: hidden;
  border-radius: 0em 0em 1em 1em;
  min-height: 100%;
}

@media (min-width: 800px) {
  .section1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    text-align: left;
    border: 0em solid #FFF5F8;
    border-radius: 1em;
  }
  .section1 img {
    height: 40vh;
    order: 1;
    border-radius: 1em 0em 0em 1em;
    min-width: 0%;
    min-height: 4em;
  }
  .section1 h2 {
    order: 2;
    text-align: right;
    align-self: last baseline;
    margin-right: 1em;
  }
}
.bGButton {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  border-radius: 2em;
  padding: 1em;
  margin: 1em;
}

.primary {
  background-color: #FFF5F8;
}

.secondary {
  background-color: #F0D9FF;
}

.accent1 {
  background-color: #E1E4FF;
}

.accent2 {
  background-color: #D4EEFF;
}

.accent3 {
  background-color: #ECF8CC;
}/*# sourceMappingURL=style.css.map */