/* ================================
   MARKLINE DIMENSIONS — BUNDLE CSS
   Bright, kid-coded, safe, fun
   ================================ */

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Page Background */
body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    background: linear-gradient(135deg, #ffdf7f, #ff9f7f);
    color: #222;
    padding: 20px;
}

/* Top Bar */
.topbar {
    background: #fff;
    border: 4px solid #000;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 20px;
}

.topbar h1 {
    font-size: 2.5rem;
    color: #ff5a00;
    text-shadow: 2px 2px 0 #000;
}

.slogan {
    font-size: 1.2rem;
    color: #444;
}

/* Main Content */
.content {
    background: #ffffffcc;
    border: 4px solid #000;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin: auto;
}

/* Greeting */
#greeting {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #0077ff;
    text-shadow: 1px 1px 0 #000;
}

/* Username Display */
#usernameDisplay {
    color: #ff0077;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}

/* ID Display */
#idDisplay {
    color: #008800;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}

/* Buttons */
.button {
    display: inline-block;
    background: #ff7f00;
    color: #fff;
    padding: 12px 20px;
    border: 4px solid #000;
    border-radius: 10px;
    font-size: 1.1rem;
    text-decoration: none;
    cursor: pointer;
    margin-top: 15px;
    transition: transform 0.1s ease;
}

.button:hover {
    transform: scale(1.05);
}

.button.secondary {
    background: #0077ff;
}

/* Notes */
.note {
    margin-top: 20px;
    font-size: 1rem;
    color: #333;
}