/* styles.css */

/* Center all text and set a max width for readability */
body {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    font-family: Arial, sans-serif;
}

/* Center images and add spacing */
img {
    display: block;
    margin: 10px auto;
}

/* Space out articles */
article {
    margin-bottom: 50px;
}

/* Style navigation links */
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: black;
}

/* Footer styling */
footer {
    margin-top: 50px;
    font-size: 0.9em;
    color: #555;
}

.greenbold {
    color: darkgreen;
    font-weight: bold;
}

body {
    background: linear-gradient(to bottom, #e0eafc, #cfdef3);
    color: #333; /* ensures text is readable */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #e0eafc; /* fallback */
    background: linear-gradient(to bottom, #e0eafc, #cfdef3);
}

body {
    background-color: #e0eafc; /* fallback */
    background: linear-gradient(to bottom, #e0eafc, #cfdef3);
    font-family: Arial, sans-serif;
    max-width: 900px;      /* maximum width of your content */
    margin: 0 auto;        /* centers horizontally */
    padding: 20px;         /* optional spacing inside edges */
    color: #333;
}

ul li {
    margin-bottom: 15px; /* space below each item */
    line-height: 1.5;    /* improves readability */
}

#email-form {
    text-align: left;       /* left-aligns all text and fields */
    max-width: 600px;       /* controls the width of the section */
    margin: 20px auto;      /* horizontally centers the section on the page */
    padding: 20px;
    background-color: rgba(255,255,255,0.85);
    border-radius: 10px;
}

#email-form form input,
#email-form form textarea {
    width: 100%;            /* makes input fields fill the section width */
    display: block;
    margin-bottom: 15px;    /* spacing between fields */
}

#email-form button {
    padding: 10px 20px;
    background-color: #2ecc71;
    border: none;
    border-radius: 5px;
    color: white;
    cursor: pointer;
    margin-right: 10px;
}

#email-form button:hover {
    background-color: #27ae60;
}