
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Comic Sans MS', 'Comic Sans', cursive;
    background: linear-gradient(135deg, #ffcc00, #ff6699, #66ccff);
    background-size: 400% 400%;
    animation: gradientBG 10s infinite;
    color: #333;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}


@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


header {
    background: #ff3366;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-size: 3em;
    font-weight: bold;
    letter-spacing: 3px;
}

header p {
    font-size: 1.2em;
    font-style: italic;
}


nav {
    background: #333;
    padding: 10px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    transition: transform 0.2s ease;
}

nav ul li:hover {
    transform: scale(1.2);
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul li a:hover {
    color: #ffcc00;
    text-shadow: 0 0 10px #ffcc00;
}


.hero {
    background-image: url('images/Screenshot\ 2024-12-07\ 234852.png');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    animation: pulse 5s infinite;
}

.hero h2 {
    font-size: 3em;
    font-weight: bold;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Content Section */
.content {
    padding: 20px;
    text-align: center;
    background: #fff;
    border-radius: 10px;
    margin: 20px auto;
    width: 90%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content h2 {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #ff3366;
}

.content p {
    font-size: 1.2em;
    color: #666;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
    font-size: 0.9em;
}

footer a {
    color: #ffcc00;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
    color: #ff6699;
}
