body {
    background-color: #1a0000;
    color: #ff4d4d;
    font-family: 'VT323', monospace;
    text-align: center;
    padding: 60px;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    image-rendering: pixelated;
    animation: faint-glow 3s infinite alternate ease-in-out;
}

@keyframes faint-glow {
    0% { background-color: #1a0000; }
    100% { background-color: #330000; }
}

h1 {
    font-size: 28px;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px #990000, -3px -3px 6px #990000;
    letter-spacing: 2px;
}

p {
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 80%;
    line-height: 1.5;
}

button {
    background-color: #990000;
    color: #ffd1d1;
    border: 5px solid #ff4d4d;
    padding: 18px 36px;
    margin: 12px;
    font-family: 'VT323', monospace;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    box-shadow: 0 0 10px #ff4d4d;
}

button:hover {
    background-color: #ff4d4d;
    border-color: #990000;
    transform: scale(1.05);
    box-shadow: 0 0 15px #ff4d4d;
}