@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  background-color: #090b1a;
  font-size: 15px;
}

h2 {
  font-family: "Lexend Deca", sans-serif;
  color: white;
}

h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: white;
}

h1 span {
  color: #8135b1;
}

p {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.75);
}

/* If window is larger than 800px */
@media only screen and (min-width: 800px) {
  .main-container {
    background-color: #1b1938;
    height: 30rem;
    width: 75rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 1rem;
  }
  .left-container {
    float: left;
    width: 50%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-container {
    width: 70%;
    height: auto;
    margin: auto;
  }
  .hero h1 {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .description {
    line-height: 1.5rem;
    padding-right: 5rem;
    padding-bottom: 3rem;
  }
  .stats {
    width: 80%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .stats section {
    line-height: 1rem;
    display: inline-block;
    padding-right: 5rem;
  }
  .stats p {
    letter-spacing: 0.1rem;
    font-size: 0.8rem;
  }
  .right-container {
    float: right;
    width: 50%;
    height: 100%;
    overflow: hidden;
    border-radius: 0 1rem 1rem 0;
    background-color: #8135b1;
  }
  .right-container img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    position: relative;
  }
}

/* If window is smaller than 800px */
@media only screen and (max-width: 800px) {
  .main-container {
    background-color: #1b1938;
    height: 55rem;
    width: 22rem;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 1rem auto;
    border-radius: 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
  .left-container {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    float: left;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .hero-container {
    width: 80%;
    height: auto;
    margin: auto;
  }
  .hero h1 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .description {
    line-height: 1.8rem;
    padding: 0 0.2rem;
    padding-bottom: 1rem;
    font-size: 1rem;
  }
  .stats {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 1.5rem;
  }
  .stats section {
    line-height: 1rem;
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .stats p {
    letter-spacing: 0.2rem;
  }
  .stats h2 {
    font-size: 1.5rem;
  }
  .right-container {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    float: left;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem 1rem 0 0;
    background-color: #8135b1;
  }
  .right-container img {
    width: 100%;
    height: auto;
    opacity: 0.6;
    position: relative;
  }
}

.attribution {
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
  font-size: 12px;
  text-align: center;
  font-weight: 600;
}

.attribution a {
  color: #8135b1;
}
/*# sourceMappingURL=app.css.map */