/* General page styles */
body {
    background: linear-gradient(to bottom right, navy, steelblue);
    font-family: cursive;
    margin: 0;
    padding: 20px;
    color: black;
}

/* Main content container */
.container {
    max-width: 950px;
    margin: auto;
    background-color: white;
    border: 5px solid navy;
    border-radius: 15px;
    padding: 30px;
}

/* Header section */
header {
    text-align: center;
    margin-bottom: 25px;
    border-bottom: 3px solid navy;
    padding-bottom: 15px;
}

/* Main title */
h1 {
    color: navy;
}

/* Small text under title */
header p {
    color: gray;
}

/* Navigation area */
nav {
    text-align: center;
    margin-bottom: 30px;
}

/* Navigation buttons */
nav a {
    display: inline-block;
    background-color: navy;
    color: white;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    border-radius: 8px;
}

/* Change color when mouse is over button */
nav a:hover {
    background-color: royalblue;
}

/* Boxes for each section */
.content-box {
    border: 2px solid lightblue;
    background-color: aliceblue;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Section headings */
h2 {
    color: darkblue;
    border-left: 5px solid navy;
    padding-left: 10px;
}

/* Paragraph spacing */
p {
    line-height: 1.6;
}

/* List spacing */
ul {
    padding-left: 25px;
}

/* Space between list items */
li {
    margin-bottom: 8px;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    border-top: 2px solid navy;
    padding-top: 15px;
    color: dimgray;
}