body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #8e44ad, #3498db);
    color: white;
    text-align: center;
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.8);
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid #ffcc00;
}

nav {
    padding: 10px;
    background: #444;
    border-top: 2px solid white;
}

nav ul {
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease-in-out, transform 0.2s;
}

nav ul li a:hover {
    text-decoration: underline;
    color: yellow;
    transform: scale(1.1);
}

.container {
    background: rgba(255, 255, 255, 0.9);
    padding: 25px;
    margin: 30px auto;
    border-radius: 12px;
    max-width: 850px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: black;
}

img {
    width: 80%;
    border-radius: 12px;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out;
    border: 3px solid #ffcc00;
}

img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    margin-top: 20px;
    color: white;
    font-size: 14px;
    text-transform: uppercase;
}

h1, h2 {
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

p {
    font-size: 20px;
    font-style: italic;
    color: #222;
    line-height: 1.8;
}

ul {
    text-align: left;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    color: #444;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 10px;
}

button {
    background-color: #ffcc00;
    color: black;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s;
}

button:hover {
    background-color: #ff9900;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    img {
        width: 90%;
    }
}

