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

header {
    background: rgb(10, 10, 10);
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

nav {
    text-align: center;
    padding: 15px;
    background: #444;
}

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

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

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: #ffcc00;
    transform: scale(1.1);
}

.container {
    background: rgba(255, 255, 255, 0.95);
    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;
}

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

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

p {
    font-size: 18px;
    font-style: italic;
    color: #99004d;
}

ul {
    text-align: left;
    display: inline-block;
    margin-top: 10px;
    background: rgba(255, 204, 229, 0.8);
    padding: 10px;
    border-radius: 8px;
}

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

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

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

footer {
    background: rgb(20, 20, 20);
    padding: 15px;
    color: white;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #cc6699;
    border-radius: 6px;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #cc6699;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #cc0066;
    color: white;
}

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

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

    img {
        width: 90%;
    }
}
