main {
    position: relative;
}
main h1 span {
    padding-bottom: 0px;
    border-bottom: 2px solid var(--color-theme);
    font-weight: 900;
}
main .box-image {
    position: relative;
    height: auto;
    margin: 0 auto;
    overflow: hidden;
}
main .box-image img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}
main .box-text {
    padding: 10px;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
}
main .box-text h2 {
    font-weight: bold;
    font-size: 1.5em;
    line-height: 1.25;
    margin-top: 1rem;
    margin-bottom: 0;
    text-shadow: -1px 0 var(--color-text-shadow), 0 1px var(--color-text-shadow), 1px 0 var(--color-text-shadow), 0 -1px var(--color-text-shadow);
}

main .box-inner {
    padding: var(--padding-box);
    background-color: var(--color-white);
    cursor: pointer;
}