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;
}

#intro {
    text-align: center;
    background-color: #F7F6F2;
    padding: .5rem;
    margin-top: 1rem;
    border: #89a02c solid 2.5px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

#intro h2{
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2rem);
    line-height: 1.3;
}

section {
    padding:3rem;
    background:white;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

#content {
    display:grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap:2rem;
    background-color: #F7F6F2;
    border: #89a02c solid 2.5px;
    border-radius:15px;
    margin-bottom: 2rem;
}

#imgs {
    display: flex;
    justify-content: space-around;
}

#imgs img {
    width:100%;
    max-width:200px;
    max-height: 200px;
    border-radius:12px;
    box-shadow:0 5px 20px rgba(0,0,0,.12);
    transition:.3s;
}

#imgs img:hover {
    transform:scale(1.03);
}

table {
    border: black 2px solid;
    border-radius: 15px;
    padding: .5rem;
}