/* General page styling */
body {
    margin: 0;
    padding: 0;
    background-color: #E5FFE0;
    font-family: "Times New Roman", Times, serif;
}

/* Header logo spacing */
header {
    padding: 20px;
}

/* Navigation bar */
nav {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: right;
}

/* Big centered slogan */
nav h4 {
    position: absolute;
    top: 200px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    color: #3034FC;
    margin: 0;
    text-align: center;
}

/* Nav list */
nav ul {
    list-style: none;
    margin: 0;
    padding: 10px 15px;
    background-color: #30D1FC;
    border-radius: 5px;
}

nav ul li {
    display: inline-block;
    margin-left: 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Main article sections */
article {
    border: 2px solid #000;
    padding: 20px;
    margin: 40px auto;
    width: 80%;
    background-color: #ffffff;
}

/* Article headings */
article h1 {
    margin-top: 0;
}

/* Center article images */
article img {
    display: block;
    margin-top: 15px;
}

/* Aside section */
aside {
    text-align: center;
    margin: 40px auto;
    width: 80%;
}

/* Big green call-to-action text */
aside p {
    font-size: 1.5em;
    color: darkgreen;
    font-weight: bold;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
}

/* Footer links stacked below message */
footer a {
    display: block;
    color: #91b9fa;
    text-decoration: none;
    margin: 5px 0;
}

/* Footer copyright text */
footer p {
    font-size: 0.9em;
}
