* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.light-theme {
    background-color: #f4f4f4;
    color: #121212;
}

body {
    background: #000;
    color: rgb(255, 255, 255);
    font-family: Arial, sans-serif;
    overflow: hidden;
    transition: background 0.5s, color 0.5s;
}

#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
}
.light-theme {
    background-color: #f4f4f4;
    color: black;
}
#theme-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    border-radius: 50%;
    font-size: 20px;
}
.details{
    color: #01ccff;
    margin-top: 100px;
    margin-left: 20px;
}
.details h1{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 50px;
}
.details h2{
    font-family:'Courier New', Courier, monospace;
    font-size: 30px;
}
.details p{
    font-size: 15px;
    font-weight:bold;
    color: hsla(189, 86%, 77%, 0.733);
}
.content {
    position: relative;
    text-align: center;
    font-size: 2rem;
}
.content .button{
    background-color: #00000073;
    justify-content: center;
    margin-top:10%;
    border: none;
    border-radius: 10px;
    color: rgb(7, 255, 255);
    padding-top: 50px;
    padding-bottom: 50px;
    width: 300px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Navbar */
nav img {
    max-width: 30px;
    max-height: 30px;
}

.logo {
    justify-content: left;
}

button {
    margin-right: 45px;
    padding: 8px;
    border: none;
    cursor: pointer;
    background: transparent;
    color: rgb(0, 0, 0);
    font-size: 24px;
    /* Adjust size */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    /* Makes it circular */
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    padding: 5px;
    vertical-align: middle;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    z-index: 100;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links.active {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #f39c12;
}

/* Mobile Navbar */
.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    left: 10px;
    transition: transform 0.3s ease-in-out;
}

.menu-toggle.active {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px;
        position: fixed;
        top: 0;
        width: 100%;
        height: fit-content;
        transition: transform 0.3s ease-in-out;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        z-index: 100;
    }

    .mainbody {
        padding-top: 100px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.9);
        width: 100%;
        text-align: left;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        margin-left: 20px;
        justify-content: left;
        /* Adjusted for mobile */
    }
}
