/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Times New Roman", Times, serif;
    background-color: #1D157B;
    color: #FFFFFF;
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: #1D157B;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #FFFFFF;
}

header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #F5B21B;
}

header h1 .yellow {
    color: #F5B21B;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1D157B;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    padding: 14px 0;
    gap: 28px;
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
    transition: color 0.3s ease, opacity 0.3s ease;
}

nav a:hover {
    color: #F5B21B;
    opacity: 1;
}

/* Main Content */
main {
    margin: 20px auto;
    max-width: 1200px;
    background-color: #1D157B;
    border: 2px solid #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    color: #FFFFFF;
    font-family: "Times New Roman", Times, serif;
    box-shadow: 0 0 0 1px #FFFFFF, 0 6px 18px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

main h1,
main h2,
main h3 {
    color: #F5B21B;
    margin-bottom: 15px;
}

main h1 {
    font-size: 30px;
}

main h2 {
    font-size: 24px;
}

main h3 {
    font-size: 20px;
}

main p {
    margin-bottom: 15px;
    color: #FFFFFF;
}

main a {
    color: #FFFFFF;
    text-decoration: none;
}

main a:hover {
    color: #F5B21B;
}

main ul,
main ol {
    margin-left: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

main li {
    margin-bottom: 8px;
    color: #FFFFFF;
}

/* Button Styles */
button {
    padding: 10px 20px;
    color: #1D157B;
    background-color: #F5B21B;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

button:hover {
    background-color: #FFFFFF;
    color: #1D157B;
}

/* Footer Styles */
footer {
    background-color: #1D157B;
    color: #FFFFFF;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-family: "Times New Roman", Times, serif;
    border-top: 1px solid #FFFFFF;
}

footer p {
    font-size: 14px;
    color: #FFFFFF;
}