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

body {
  background-color: #090b1a;
  font-size: 15px;
  min-width: 375px;
  max-width: 1440px;
}

.card {
  background-color: #1b1938;
  max-width: 1100px;
}

body {
  font-family: "Inter", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
}

h1 {
  color: white;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 2rem;
  line-height: 1.5rem;
}

@media screen and (min-width: 900px) {
  h1 {
    font-size: 36px;
    margin-bottom: 1.5rem;
  }

  p {
    max-width: 40ch;
  }
}
h2 {
  color: white;
  margin-bottom: 0.25rem;
}

.text-accent {
  color: #aa5cdb;
}

/* GENERAL LAYOUT */
body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
}

footer {
  margin-top: auto;
}

.l-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  border-radius: 10px;
  margin-top: auto;
}

@media screen and (min-width: 900px) {
  .l-card {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row-reverse;
    text-align: left;
  }
}
.l-card-content {
  padding: 2rem 3rem 0;
}

.l-card-stats {
  text-transform: uppercase;
}

@media screen and (min-width: 900px) {
  .l-card-content {
    width: 50%;
    padding: 4rem;
  }

  .l-card-stats {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    text-align: left;
  }
}
.l-card-stats-section {
  margin: 1rem 0 2rem;
}

@media screen and (min-width: 900px) {
  .l-card-stats-section {
    margin-right: 3rem;
  }
}
.l-card-stats-name {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-family: "Lexend Deca", sans-serif;
  font-size: 0.8rem;
}

/* HERO IMAGE LAYOUT */
.l-hero {
  height: 225px;
  width: 100%;
  background: url(../images/image-header-mobile.jpg) top/cover, #aa5cdb;
  background-blend-mode: multiply;
  border-radius: 10px 10px 0 0;
}

@media screen and (min-width: 900px) {
  .l-hero {
    background-image: url(../images/image-header-desktop.jpg);
    height: 100%;
    width: 50%;
    border-radius: 0 10px 10px 0;
  }
}

/*# sourceMappingURL=main.css.map */
