body {
    margin: 0; /* Removes default browser spacing */
    font-family:  font-family: 'MedievalSharp', fantasy; /* Clean default font */
    background-color: #050627; /* Light gray background */
    color: #ffffff; /* Dark text for readability */
}

/* Wrapper centers your content */
#wrapper {
    width: 80%; /* Controls page width */
    margin: 0 auto; /* Centers horizontally */
    background: rgb(20, 10, 72);
    height: 1024px;
    width: 1440px;
    padding: 20px;
}

/* ===============================
   HEADER + NAVIGATION
================================= */

header {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e4e4e4;
}

/* Main title */
header h1 {
    margin: 0;
    height: 221;
    width: 1440;
    font-size: 2.5em;
    color: #FFF;
font-family: "Roman Uncial Modern";
font-size: 56px;
font-style: normal;
font-weight: 500;
line-height: normal;

}

/* Navigation bar */
nav {
    margin-top: 10px;
}

/* Navigation links */
nav a {
    text-decoration: none; /* Removes underline */
    color: #d3d3d3;
    margin: 0 10px; /* Spacing between links */
    font-weight: bold;
    color: #EEE;
text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
font-family: "Roman Uncial Modern";
font-size: 28px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

/* Hover effect (when mouse is over link) */
nav a:hover {
    color: #c09112;
}

/* ===============================
   MAIN CONTENT LAYOUT
================================= */

main {
   display: flex; /* Creates side-by-side layout */
    margin-top: 20px;
    width: 1440px;
height: 593px;
color: #FFF;
font-family: Berenika;
font-size: 34px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

/* Main section */
section {
    flex: 3; /* Takes more space */
    padding: 15px;
}

/* Sidebar */
aside {
    flex: 1; /* Smaller column */
    padding: 15px;
    background: #140746;
    margin-left: 10px;
    outline-color: #d3d3d3;
    outline-width: 2px;
}

/* ===============================
   FOOTER
================================= */

footer {
    margin-top: 20px;
    padding: 10px;
    text-align: center;
    border-top: 2px solid #ddd;
    font-size: 0.9em;
    height: 210px;
    width: 1440px;
}

/* ===============================
   EXTRA: BUTTON STYLE (Optional)
================================= */

.button {
    display: inline-block;
    padding: 10px 15px;
    background: #0077cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Button hover effect */
.button:hover {
    background: #005fa3;
}

/* ===============================
   CELTIC FONT NOTE
================================= */

/*
"Celtic" fonts are NOT a standard font family like serif or sans-serif.

They usually fall under:
- fantasy (decorative fonts)

To use a Celtic font, you need to import one from Google Fonts or similar:

Example:
@import url('https://fonts.googleapis.com/css2?family=Uncial+Antiqua&display=swap');

Then apply it:
h1 {
    font-family: 'Uncial Antiqua', fantasy;
}
*/

