body {
    background-color: #c0c0c0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEklEQVQImWNgYGD4z4AE/gMADQwB/ryLh9IAAAAASUVORK5CYII=');
    font-family: "Comic Sans MS", "Arial", sans-serif;
    margin: 0;
    padding: 20px;
    color: #000;
}

.container {
    width: 640px;
    margin: 0 auto;
    background-color: #fff;
    border: 2px outset #c0c0c0;
    padding: 20px;
}

.batarongText {
    font-size: 38px;
    font-weight: bold;
    text-align: center;
    margin: 20px 0;
}

p, h4, ul {
    font-size: 14px;
    line-height: 1.5;
}

a {
    color: #0000FF;
}

a:visited {
    color: #800080;
}

a:hover {
    color: #FF0000;
}

.button {
    display: grid;
    grid-template-columns: repeat(4, 88px);
    gap: 8px;
    justify-content: center;
    padding: 0;
    margin: 20px 0;
}

.button img {
    image-rendering: pixelated;
    width: 88px;
    height: 31px;
    border: 2px outset #c0c0c0;
}

.button img:hover {
    border: 2px inset #c0c0c0;
    filter: none;
    transform: none;
    box-shadow: none;
}

.marquee {
    background-color: #000080;
    color: #fff;
    padding: 5px;
    margin: 20px 0;
    font-weight: bold;
}

hr {
    border: none;
    border-top: 2px groove #c0c0c0;
    margin: 20px 0;
}

.counter {
    text-align: center;
    font-size: 12px;
    margin: 20px 0;
}

.blink {
    animation: blink 1s steps(2, start) infinite;
}

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

.construction {
    text-align: center;
    font-weight: bold;
    color: #FF0000;
}