/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

h1, h2 {
    color: #333;
}

a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    background-color: #00bcd4;
    color: white;
    text-align: center;
    padding: 30px 0;
	background-image: url(images/header.webp);
	background-position: center;
}

header * {
    margin: 0;
    font-size: 36px;
	color: lime;
	background-color: rgba(255,255,255,.5);

}

header h1 {
	background: linear-gradient(to right, #911a80, #d42b45);
      background-clip: text;
      color: transparent;
}

header p {
    font-size: 18px;
    margin-top: 5px;
	color: green;
}

/* Navigation Styles */
nav {
    background-color: #34495e;
    text-align: center;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    color: white;
    font-size: 18px;
}

/* Section Styles */
section {
    background-color: #ffffff;
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
	background-image: url(images/img_flwr.gif), url(images/paper.gif);
    background-position: right bottom, left top;
    background-repeat: no-repeat, repeat;
	
}
section {
	opacity: .9;
}

section h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

section p, section ul {
    font-size: 16px;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
}

footer p {
    margin: 0;
}