* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100vh;
  background-color: #443874;
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.card {
  position: relative;
  padding: 2rem;
  color: #fff;
  background-image: linear-gradient(to right, #5b4b8d 40%, #8274a6);
}

.card::before {
  content: '';
  width: 90%;
  height: 110%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(87,74,149,.2);
  z-index: -1;
}

.info__heading {
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 100;
  letter-spacing: 1px;
}
.info__description {
  font-size: 1.6rem;
  margin-bottom: 4rem;
  line-height: 1.5;
}
.info__button {
  padding: 1.5rem;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background-color: #8274a6;
  transition: .5s;
}
.info__button:hover {
  box-shadow: 0 0 1.5rem rgba(0,0,0,.4);
}
.info__right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  margin-top: 5rem;
  position: relative;
}
.info__right::before,
.info__right::after {
  content: '';
  position: absolute;
  top: 50%;
  background-color: rgba(255,255,255,.2);
}
.info__right::before {
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
}
.info__right::after {
  width: 1px;
  height: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stat__group {
  padding: 2.5rem;
}
.stat__number {
  margin-bottom: 0.6rem;
  font-size: 2.6rem;
  letter-spacing: 1px;
}
.stat__name {
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .card {
    max-width: 90rem;
    padding: 10rem;
    display: flex;
    align-items: center;
  }
  .info__left {
    flex: 1;
    padding-right: 3.5rem;
  }
  .info__right {
    flex: 1;
    margin-top: 0;
  }
  .stat__number {
    font-size: 4rem;
  }
  .stat__name {
    font-size: 1.1rem;
  }
}