section{
  height: 100vh;
}

section h2{
  color: var(--md-sys-color-on-surface);
  font-size: 2rem;
  margin: 1rem 3rem;
}

#heroSection{
  height: 100vh;
  width: 100vw;
  padding: 64px;
  gap: 32px;
}

#logo{
  display: block;
  width: 512px;
  height: 512px;
  max-width: 100%;
  /* margin: auto; */
}

.separator{
  width: 2px;
  height: 100%;
  background-color: var(--md-sys-color-on-surface);
  border-radius: 9999px;
}

.stat {
  width: 28vw;
  height: 28vw;
  max-width: 300px;
  max-height: 300px;
  background-color: darkorange;
  border-radius: 50%;
  color: var(--md-sys-color-surface);
  text-align: center;
}

.stat span{
  font-size: 6rem;
}

input[type="button"]{
  appearance: none;
  padding: .5rem 1.5rem;
  border: 1px solid var(--md-sys-color-on-surface);
  background-color: transparent;
  color: var(--md-sys-color-on-surface);
  border-radius: 9999px;
  transition: 200ms;
  transition-property: color background-color;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
}

input[type="button"]:hover{
  background-color: var(--md-sys-color-on-surface);
  color: var(--md-sys-color-surface);
}

#decorativeSwiggles{
  z-index: -1;
  position: absolute;
  width: 130vw;
  overflow: hidden;
  left: -30vw;
  transform: translate(100px, 100px);
}

#decorativeSwiggles svg:nth-child(2){
  transform: translate(-5%, -70%);
}

#decorativeSwiggles svg:nth-child(3){
  transform: translate(-10%, -140%);
}

#features{
  gap: 1.5rem;
  position: relative;
}

#decorativeBubble{
  background: linear-gradient(to bottom left, rgba(255, 166, 0, 0.3), rgba(0, 255, 55, 0));
  position: absolute;
  border-radius: 100%;
  width: 1500px;
  height: 1500px;
  left: -30%;
  z-index: -1;
  top: -20%;
}

.feature{
  padding: 1rem 2rem;
  border: 3px dotted var(--md-sys-color-on-surface);
  color: var(--md-sys-color-on-surface);
  min-width: 70%;
  width: 50%;
}

.feature:nth-child(odd){
  border-top-right-radius: 9999px;
  border-bottom-right-radius: 9999px;
  border-left: none;

  text-align: right;
}

.feature:nth-child(even){
  border-top-left-radius: 9999px;
  border-bottom-left-radius: 9999px;
  margin-left: auto;
  border-right: none;

  text-align: left;
  transform: translateX(3rem);
}

footer{
  color: var(--md-sys-color-on-surface);
  height: 100vh;
  width: 100vw;
}

.footerSection{
  background-color: var(--md-sys-color-surface-low);
  width: 100%;
}

.footerSection p,
.footerSection a{
  letter-spacing: 2px;
  text-decoration: underline;
  text-decoration-color: orange;
  text-decoration-style: dotted;
  opacity: 50%;
  cursor: pointer;
  margin-top: 1rem;
}

.footerSection p:hover,
.footerSection a:hover{
  opacity: 100%;
}

.footerSection hr{
  width: 100%;
  border: 1px solid var(--md-sys-color-on-surface);
}

.footerSection h3{
  font-size: 1.5rem;
  font-weight: bold;
}

#footerLogoContainer{
  width: 100vw;
}

#footerLogoContainer svg{
  width: 16vw;
  height: 16vw;
}

@media (max-width: 768px) {
  .stat {
    width: 60vw;
    height: 60vw;
    max-width: 200px;
    max-height: 200px;
  }

  #heroSection{
    flex-direction: column;
  }

  .separator{
    width: 100%;
    height: 2px;
  }

  .stat span{
    font-size: 3rem;
  }

  #stats{
    flex-direction: column;
    /* gap: 1rem; */
  }
}