body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url("ouga.webp");
    background-size: cover;
    font-weight: bold;
    color: red;
}

h1 {
    font-size: 72pt;
    font-family: "Comic Sans MS", Arial, "Times New Roman", serif;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.blink {
    animation: blink 1s infinite;
}
