:root {

    --accent: #ff0000;

    --bg-still: url('../assets/imgs/WRATH/wrath_logo_still.png');
    --bg-gif: url('../assets/imgs/WRATH/wrath_logo.gif');

    --body: 'IM Fell DW Pica';

}

body {
    background: #000;
    color: #fff;
    font-size: 1.25em;
}

.title {
    margin: 2em auto;
    text-align: center;
}

.title img {
    max-width: 250px;
}

.art {
    margin: 1em auto;
    text-align: center;
}

.title {
    margin: 2em auto;
    max-width: fit-content;
}

.still, .title:hover .animated {
   display: none;
}

.animated, .title:hover .still {
    display: block;
 }  


main {
    margin: 2.5em 2em;
}

p {
    margin: 1em auto;
    font-family: var(--body);
    text-align: center;
    /* letter-spacing: 0.05em; */
    font-size: 1.25rem;
}

.red {
    color: #fff;
    transition: 500ms;
}

.red:hover,
.red:target {
    color: #ff0000;
    font-weight: 900;
    letter-spacing: 0.05em;
    /* text-transform: uppercase; */
    cursor: crosshair;
}

.back {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    z-index: 9;
    position: fixed;
    bottom: 1em;
    left: 1em;
    padding: 0.25em;
}

.back a {
    color: #fff;
    font-size: 1.75rem;
    line-height: 0;
    transition: ease-out all 750ms;
    opacity: 25%;
    transform: scale(-1,1);
}

.back:hover > a {
    color: var(--accent);
    opacity: 100%;
    transform: scale(1, -1) 
            rotate(540deg);
}