@font-face {
    src: url("../font/nexaheavy.ttf");
    font-family: nexaheavy;
}

#center-message-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

#center-message-text {
    font-family: nexaheavy, Arial, sans-serif;
    color: white;
    font-size: 10vw;
    text-shadow: 3px 3px 10px #801a86;
    pointer-events: none;
    user-select: none;
    background: none;
    padding: 0;
    margin: 0;
    transition: opacity 0.7s;
    opacity: 1;
}

#center-message-bg.fadeout #center-message-text {
    opacity: 0;
    transition: opacity 0.7s;
}
