main {
    height: 100vh;
    width: 100%;
}

.stats {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stats .row {
    display: flex;
    background-color: var(--card-background);
     border-radius: var(--border-radius);
}

.stats .row .flex-col:first-of-type {
    padding: 4.2rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    order: 1;
}

.stats .row .flex-col:first-of-type h2 span {
    color: var(--accent);
}

.stats .row .flex-col:nth-of-type(2) {
    width: 50%;
     order: 2;
}

.stats .thumbnail {
    border-top-right-radius: var(--border-radius);
     border-bottom-right-radius: var(--border-radius);
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stats .thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  filter: brightness(120%) saturate(100%) hue-rotate(0deg);
  opacity: .95;
  background-color: hsl(277, 64%, 61%);
  mix-blend-mode:multiply;
}

.stats .flex-col .content {
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
}

.stats .flex-col .info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.stats p,
.stats .content{
    width: 90%;
}


@media screen and (max-width: 720px){
    .stats .row .flex-col:nth-of-type(1) {
        padding: 2rem;
    width: 100%;
    order: 2;
    text-align: center;
}

.stats p,
.stats .content {
    width: 100%;
}
.stats .row .flex-col:nth-of-type(2) {
    width: 100%;
    order: 1;
}

.stats .thumbnail {
    border-radius: 0;
     border-top-left-radius: var(--border-radius);
      border-top-right-radius: var(--border-radius);
}

.stats .thumbnail::before {
content: "";
display: block;
padding-top: 80%;
}

main {
    height: 100%;
}

.stats .content {
    flex-direction: column;
    gap: 2rem;
}
}
