h2 {
    padding: 1em 2em 0;
    margin-bottom: 1em;
    position: relative;
    font-weight: 900;
    /* text-shadow: 0 0 5px 5px rgba(255, 255, 255, 0.5); */
    -webkit-text-stroke-width: 0px;
    -webkit-text-stroke-color: var(--black);
}

h2:after {
    content: ' ';
    width: 100%;
    height: 0.25em;
    /* background: linear-gradient(90deg, #e74141ff, #f1d059ff, #fcf6f6ff, #49bd49ff, #4583f6ff); */
    background: var(--black);
    opacity: 0.8;
    position: absolute;
    bottom: -0.5em;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}

p {
    width: 95%;
    margin: auto;
    margin-bottom: 1em
}