/* Reset CSS */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Header */
header {
    background: linear-gradient(to right, #ff7e5f, #feb47b, #ff7e5f);
    color: #fff;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-size: 2em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Navigation */
nav {
    background-color: #fff;
    padding: 10px;
    text-align: center;
}

nav a {
    text-decoration: none;
    color: #333;
    margin: 0 10px;
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    background: linear-gradient(to right, #fbb6c5, #ffa6c1, #fddde6);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

nav a:hover {
    transform: translateY(-2px);
}

/* Section */
section {
    padding: 20px;
}

section h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: linear-gradient(to right, #ff7e5f, #feb47b, #ff7e5f);
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #fff;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    header h1 {
        font-size: 1.5em;
    }
}
