

.timms-overlay {
    position: absolute;
    border-radius: 10px;
    margin: 0.5em;
    top: 0;
    left: 0;
    color: #fff;
    height: 15%;
    width: 20%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-left: 3em;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    margin-bottom: 0;
    justify-content: center;
    background: #a51e37db;
    opacity: 1;
    animation: fadeOut 7s ease-out 10ms normal forwards;
}


@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 70;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }


}
.pow {
    font-size: 1vw;
    animation: none;
}

.lumen {

    background: 50% 100% / 0% 0% no-repeat radial-gradient(ellipse at bottom, #fff, transparent, transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 3vw;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: reveal 3000ms ease-in-out forwards 200ms, glow 5000ms alternate 300ms;
}

@keyframes reveal {
    0% {}

    80% {

        letter-spacing: 8px;
    }

    100% {

        background-size: 600% 400%;
    }
}


@keyframes glow {
    40% {
        text-shadow: 0 0 8px #fff;
    }
}