/* ===== Inherent StarKid Journal Styles ===== */

/* Body & general font/colors */
body {
    background: linear-gradient(to bottom, #000033, #330066);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
}

/* Wrapper container */
#wrapper {
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(0,0,0,0.7);
    border: 3px dashed #ffcc00;
}

/* Banner */
#banner {
    text-align: center;
    background-color: #ff3399;
    padding: 20px;
    border: 2px solid #ffff00;
}

#banner h1 {
    font-size: 3em;
    margin: 0;
    text-shadow: 2px 2px #000;
}

#banner p {
    margin: 5px 0 0 0;
    font-weight: 400;
}

/* Navigation bar */
#navbar {
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #000099;
    border-top: 2px dotted #ffcc00;
    border-bottom: 2px dotted #ffcc00;
}

#navbar a {
    color: #00ffcc;
    text-decoration: none;
    margin: 0 10px;
}

#navbar a:hover {
    text-decoration: underline;
}

/* Content box */
#content-box {
    padding: 20px;
    background-color: rgba(51, 0, 51, 0.8);
    border: 2px dotted #ff33ff;
}

/* Headings */
h2, h3 {
    text-align: center;
    color: #ffcc00;
}

/* Paragraphs */
p {
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 1em;
}

/* Centered elements inside content */
center {
    display: block;
    text-align: center;
}

/* Footer */
#footer {
    text-align: center;
    padding: 10px;
    margin-top: 20px;
    border-top: 2px dashed #ffcc00;
    font-size: 0.9em;
}

/* Under construction / animated GIF style */
.under-construction {
    text-align: center;
    margin-top: 20px;
}

.under-construction img {
    width: 150px;
    animation: spin 5s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}

/* Lists */
ul {
    padding-left: 40px;
    margin-bottom: 1em;
}

li {
    margin-bottom: 0.5em;
}

/* Links inside content box */
#content-box a {
    color: #00ffcc;
    text-decoration: underline;
}

/* Optional: subtle hover effect for links in content */
#content-box a:hover {
    color: #ffff00;
}
