body {
    margin: 0;
    padding: 0;

    background-color: black;
    user-select: none;
}

.hellnah-center {
    display: flex;

    justify-content: center;
    align-items: center;

    height: 90vh;
    width: 100%;

    margin: 0 auto;
    padding: 0;

    text-align: center;
}

.hellnah-title {
    font-size: 20vh;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

    color: red;

    text-shadow: 2px 2px 4px #781d1d;
    
    animation: hellnah-showup 1s ease-in-out;
}


@keyframes hellnah-showup {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    75% {
        opacity: 1;
        transform: scale(2);
    }
    85% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.hover-show {
    transition: 0.25s opacity;

    position: fixed;
    bottom: 10px;
    width: 100%;

    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 14px;

    color: white;

    opacity: 0.1;
}

.hover-show p {
    font-size: 2.5vh;
}

.hover-show:hover {
    transition: 0.25s opacity;
    opacity: 1;
}