/*fake comic sans from google xD*/
.comic-relief-regular {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}

body {
    background-color: black;
  background-image: url("/bg2.gif"); /*had to copy the same bg*/
    font-family: "Comic Relief", system-ui;
    color: #000;
    margin: 20px;
}

header {
    background-color: #c0c0c0;
    border: 3px outset #fff;
    padding: 10px;
    text-align: center;
    margin-bottom: 15px;
}

h1 {
    color: #000080; 
    margin: 0;
}

.container {
    display: flex; 
    gap: 10px;
}

.sidebar, .sidebar-right {
    background-color: #c0c0c0;
    border: 3px outset #fff;
    width: 200px;
    padding: 10px;
}

.content {
    background-color: #fff;
    border: 3px inset #808080;
    flex-grow: 0;
    padding: 20px;
    min-height: 400px;
}

a {
    color: #0000ff;
    font-weight: bold;
    text-decoration: underline;
}

a:hover {
    color: #ff0000;
    background-color: #ffff00;
}

button {
    background-color: #c0c0c0;
    border: 2px outset #fff;
    padding: 5px 10px;
    cursor: pointer;
    text-align: center;
}

button:active {
    border: 2px inset #fff;
}

.blink {
    animation: blinker 1s linear infinite;
    color: red;
    font-weight: bold;
    text-align: center;
}

@keyframes blinker {
    50% { opacity: 0; }
}

.counter {
    margin-top: 20px;
    text-align: center;
    font-size: 0.8em;
}

.count-box {
    background-color: #000;
    color: #00ff00;
    padding: 2px 5px;
    font-family: 'Courier New', Courier, monospace;
}

.link-banner {
    border: 1px solid #000;
    margin-bottom: 5px;
    text-align: center;
    padding: 5px;
    background: linear-gradient(to bottom, #eee, #999);
}

footer {
    margin-top: 15px;
    text-align: center;
    font-size: 0.9em;
    color: #fff;
}