body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Super Mario 256', sans-serif;
    color: #ffffff;
    overflow: hidden;


.container {
    text-align: center;
    z-index: 10;
}

.text {
    font-size: 5rem;
    animation: blink-animation 1.5s steps(2, start) infinite;
    text-shadow: 0 0 5px #ffffff, 0 0 10px #ff0000;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
