section {
    position: relative;
    width: 100vw;
    height: fit-content;
    background-image: linear-gradient(35deg, #434399, #1a751a);
    text-align: center;
    padding: 3rem;
}
section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(35deg, #434399, #1a751a);
    filter: blur(30px);
    z-index: -1;
}
h2.title {
    font-size: 2.2em;
}
h3.title {
    font-size: 1.9em;
    margin-bottom: 1rem;
}

.list-box {
    width: fit-content;
    height: fit-content;
    padding: 3rem;
    background-color: #227726;
    border-radius: 3rem 0 3rem 0;
    margin: 2rem auto;
}
.text-link{
    color: rgb(128, 239, 247);
    text-decoration: none;
}
.list-box p {
    font-size: 1.2em;
    margin-block: 1rem;
}
