main h1 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
}

main h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 1rem auto 0;
    background: #89A02C;
    border-radius: 2px;
}

#text {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background-color: white;
    border: 3px solid #89A02C;
    border-radius: 14px;
    line-height: 1.6;
}

#emmaImg {
    object-fit: cover;
    height: 400px;
    width: 400px;
    border: black solid 2px;
    border-radius: 100%;
}

.logoImg {
    height: 50px;
    width: auto;
}

#text li:hover {
    font-size: 110%;
}

#stats {
    padding: 2rem;
    margin-bottom: 2rem;
    background-color: #89A02C;
    border: 3px solid white;
    color: white;
    border-radius: 14px;
    line-height: 1.6;
}

.focus {
    margin-bottom: 20px;
}

.focusHeader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-weight: bold;
}

.bar {
    width: 100%;
    height: 24px;
    background: rgba(255,255,255,.2);
    border: 2px solid white;
    border-radius: 15px;
    overflow: hidden;
}

.innerBar {
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 12px;
}

.percent {
    font-variant-numeric: tabular-nums;
    min-width: 45px;
    text-align: right;
}

@keyframes fill {
    to {
        width: var(--target);
    }
}

#focus ul {
  list-style: none;
}

#facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.fact {
    text-align: center;
    font-size: x-large;
}

.icon {
    background-color: white;
    height: 150px;
    width: 150px;
    padding: 1rem;
    border-radius: 100%;
}

.counter {
    display: block;
    font-size: 4rem;
    font-weight: bold;
}

@media (max-width: 650px) {

    #text {
        flex-direction: column;
        align-items: center;
    }

    #emmaImg {
        height: 300px;
        width: 300px;
    }

    li:hover {
        font-size: 100%;
    }
}