/* Reset default styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


/* Navbar Styling */

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(10px);
    color: #fff;
    z-index: 1000;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00bcd4;
    /* Light blue on hover */
}


/* Content Styling */

.content {
    padding: 100px 30px;
    background: #f4f4f4;
    min-height: 200vh;
    /* To make the page scrollable */
}

.content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    margin-bottom: 20px;
    font-size: 1.2rem;
}