/* General styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #eaeaea; /* background */
    color: #13004d;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links a {
    color: #2b0000;
    text-decoration: none;
    margin-left: 1.5rem;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Hamburger menu for mobile */
.menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Intro section */
.intro {
    background: linear-gradient(135deg, #22163b, #1e0909);
    color: rgb(218, 218, 218);
    padding: 16rem 2rem;
    text-align: center;
}

.intro h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.intro p {
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #bcbcbc;
    padding: 10px 0;
    text-align: center;
    color: #020202;
    position: absolute;
    width: 100%;
        
}

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background-color: #e8e8e8;
        position: absolute;
        top: 60px; /* Adjust according to the height of your navbar */
        right: 0;
        width: 100%;
        padding: 1rem 0;
    }

    .nav-links a {
        margin: 1rem 0;
        text-align: center;
        display: block;
    }

    .menu-icon {
        display: block;
    }

    .intro h1 {
        font-size: 3rem;
    }

    .intro p {
        font-size: 1rem;
    }
}
