a {
    color: white;
    text-decoration: none; 
}
body {
    margin: 0;
    overflow-x: hidden;
    background: linear-gradient(to bottom, #0a0a0a, #1a1a2e);
    background-attachment: fixed;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
}

canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.nav-bar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-bar a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 5px 15px;
    transition: 0.3s;
    text-align: center;
    flex-grow: 1;
}

.nav-bar a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.nav-bar a:first-child {
    font-size: 2rem;
    font-weight: bold;
    text-align: left;
    flex-grow: 2;
}

.nav-bar button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    margin-left: auto;
}

.nav-bar button:hover {
    background: rgba(255, 255, 255, 0.2);
}