body,
html {
    margin: 0;
    padding: 0;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

* {
    font-family: 'Lucida Console';
    font-size: 14px;
}

#backgroundCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Define styles for the start bar */
#startBar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #444;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 5px;
    z-index: 1000;
}

#clock {
    padding: 10px;
    margin-left: auto;
}

#icons {
    display: flex;
    gap: 10px;
}

.icon {
    padding: 10px;
    background-color: #555;
    border-radius: 5px;
    cursor: pointer;
}

.icon:hover {
    background-color: #777;
}

.window {
    position: absolute;
    width: 400px;
    height: 300px;
    border: 2px solid #333;
    background: #444;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.title-bar {
    background: #2d2d2d;
    color: #fff;
    padding: 5px;
    cursor: move;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-btn {
    cursor: pointer;
}

.content {
    flex-grow: 1;
    overflow: auto;
    padding: 10px;
}

.resizer {
    width: 20px;
    height: 20px;
    background: #2d2d2d;
    position: absolute;
    right: 0;
    bottom: 0;
    cursor: se-resize;
}

.window .content img {
    max-width: 100%;
    height: auto;
}
a {
    color: #fff;
    /* Define the color as white */
    text-decoration: none;
    /* Remove underline */
}

.article-link {
    color: blue;
}

/* Target the links inside the blog window */
.window .content a[data-article],
.window .content a[data-game],
.window .content a[data-tool] {
    color: #fff;
    /* Define the color as white */
    text-decoration: none;
    /* Remove underline */
}

/* Ensure visited links have the same color */
.window .content a[data-article]:visited,
.window .content a[data-game]:visited,
.window .content a[data-tool]:visited {
    color: #fff;
    /* Define the color as white */
    text-decoration: none;
    /* Remove underline */
}

/* Optionally, define hover style */
.window .content a[data-article]:hover,
.window .content a[data-game]:hover,
.window .content a[data-tool]:hover {
    color: #fff;
    /* Maintain the same color or set a different hover style */
    text-decoration: underline;
    /* Optional, set desired hover style */
}

/* Optionally, define focus style */
.window .content a[data-article]:focus,
.window .content a[data-game]:focus,
.window .content a[data-tool]:focus {
    color: #fff;
    /* Maintain the same color when focused */
    text-decoration: none;
}

/* Optionally, define active style */
.window .content a[data-article]:active,
.window .content a[data-game]:active,
.window .content a[data-tool]:active {
    color: #fff;
    /* Maintain the same color when active */
    text-decoration: none;
}

/* Style for the horizontal line */
hr {
    border: none; /* Remove default border */
    height: 2px; /* Adjust the height of the line */
    background-color: #333; /* Change color to your preference */
    margin: 20px 0; /* Adjust spacing around the line */
}
