/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #ff4081, #4caf50);
    color: #fff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 15px;
}

.navbar a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.navbar a:hover {
    color: #ff4081;
}

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    color: #ff4081;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
footer {
    background-color: #111;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #777;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin: 0 10px;
}

footer a:hover {
    color: #ff4081;
}
