body {
    font-family: 'Courier New', monospace;
    margin: 0;
    padding: 0;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    color: #222;
    text-align: center;
    line-height: 1.6;
}

header {
    background: #222;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
}

nav {
    text-align: center;
    padding: 10px;
    background: #444;
}
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;
}
nav ul li a:hover {
    text-decoration: underline;
    color: cyan;
}

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

img {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}
img:hover {
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}

button {
    background: cyan;
    color: black;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s ease-in-out;
}
button:hover {
    background: lightblue;
}

footer {
    background: #111;
    padding: 15px;
    margin-top: 20px;
    color: white;
}

h1, h2, h3 {
    font-family: 'Georgia', serif;
}

p {
    font-size: 18px;
    font-style: normal;
    color: #333;
}

ul {
    text-align: left;
    display: inline-block;
    margin-top: 10px;
}

li {
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}
