/* BASE */
body {
    margin: 0;
    font-family: 'Courier Prime', monospace;
    background: linear-gradient(to bottom, #e0e8ff, #c8d8ff);
    color: #002080;
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100vh;
    background-color: #c8d8ff;
    padding: 20px;
    border-right: 2px dashed #002080;
    border-radius: 8px;
    z-index: 1000;
}

#sidebar h2 {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    color: #ff69b4;
}

#sidebar ul { list-style: none; padding: 0; }
#sidebar ul li { margin-bottom: 15px; }
#sidebar ul li a {
    text-decoration: none;
    color: #002080;
    font-weight: bold;
}
#sidebar ul li a:hover {
    color: #ff1493;
    text-decoration: underline;
}

/* MAIN CONTENT */
#main-content {
    margin-left: 240px; /* leaves room for sidebar */
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* TITLE BOX */
#title-box {
    text-align: center;
    padding: 20px;
    background: linear-gradient(#c8d8ff, #a0c0ff, #c8d8ff);
    border: 2px dashed #002080;
    border-radius: 8px;
    width: 100%;
    max-width: 1200px;
}

#title-box h1 {
    font-size: 48px;
    font-family: 'Orbitron', sans-serif;
    color: #ff1493;
    -webkit-text-stroke: 1px #001133;
    text-shadow: 0 0 6px #ff69b4;
}

/* CONTENT BOX */
.content-box {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    background: linear-gradient(#f5f5ff, #c8d8ff, #f5f5ff);
    border: 2px dashed #002080;
    border-radius: 8px;
    font-family: 'Press Start 2P', monospace;
    color: #002080;
}

/* BUTTON */
.my-button {
    display: inline-block;
    padding: 10px 20px;
    font-family: 'Press Start 2P', monospace;
    font-size: 12px;
    color: #ff1493;
    border: 2px dashed #002080;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(#f5f5ff, #c8d8ff);
    transition: all 0.3s ease;
    margin: 0 auto; /* centers the button */
}
.my-button:hover {
    background-color: #0020ff;
    color: #fff;
}

/* LINKS */
a { text-decoration: none; color: #002080; }
a:hover { color: #ff1493; text-decoration: underline; }
