/* css Zen Garden default style v1.02 */
/* css released under Creative Commons License - http://creativecommons.org/licenses/by-nc-sa/1.0/  */

/* This file based on 'Tranquille' by Dave Shea */
/* You may use this file as a foundation for any new work, but you may find it easier to start from scratch. */
/* Not all elements are defined in this file, so you'll most likely want to refer to the xhtml as well. */

/* Your images should be linked as if the CSS file sits in the same folder as the images. ie. no paths. */

/* basic elements */
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: #add8e6;
    background-image: url(backgroud.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #333;
    font-family: Arial, sans-serif;
	margin: auto;
}

#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

header {
    background-color: rgba(135, 206, 235, 0.8);
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #4682b4;
    margin-bottom: 20px;
}

header h1, header h2 {
    text-align: center;
    color: #fff;
}

header h1 {
    font-size: 2.5em;
}

header h2 {
    color: #f0f8ff;
    font-size: 1.5em;
}

#intro {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 20px;
}

#preamble {
    margin-bottom: 20px;
}

#preamble h3 {
    color: #4682b4;
    font-size: 1.8em;
    margin-bottom: 10px;
}

#preamble p {
    color: #333;
    font-size: 1em;
    line-height: 1.5;
}

#supportingText {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin-bottom: 20px;
}

#supportingText h3 {
    color: #4682b4;
    font-size: 1.8em;
    margin-bottom: 10px;
}

#supportingText p {
    color: #333;
    font-size: 1em;
    line-height: 1.5;
}

footer {
    background-color: rgba(135, 206, 235, 0.8);
    padding: 10px;
    text-align: center;
    border-top: 2px solid #4682b4;
    margin-top: 20px;
}

footer p {
    color: #fff;
    font-size: 1em;
}

a {
    color: #4682b4;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}