.enter {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: whitesmoke;
    z-index: 1;
}

.enter div {
    display: flex;
    flex-direction: column;
}

.enter div span:not(.small) {
    font-size: 32px;
}

.enter div span.small {
    opacity: .6;
}

.enter .black {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: black;
    z-index: -1;
    opacity: .7;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation: fadeOut .5s ease-in-out forwards;
}

html { background: black; }

.content { color: white; padding: 25px; }

.reborn {
    background-image: url('chorus.jpg');
    background-size: 200px 200px;
    background-repeat: repeat;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

img { 
    filter: grayscale(1) contrast(50);
    z-index: -99;
}