body {
    margin: 0;
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    background: #111;
    color: white;
}

.titlebar {
    padding: 15px;
    font-size: 28px;
    text-align: center;
    font-weight: bold;
}


.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 10px;
    padding: 10px;
}

.box {
    background: #222;
    border: 1px solid #444;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
}

button {
    padding: 8px;
    border: none;
    background: #444;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #666;
}

