
body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
    background: black;
}

canvas#galaxy {
    position: fixed;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: -1; 
    pointer-events: none;
}


.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000428, #0e0f0f);
    z-index: -2;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    position: relative;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: #00e5ff;
}
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #c0d0d2;
    transition: width 0.3s ease;
}
.nav-links a:hover::after {
    width: 100%;
}

.container {
    position: auto;
    width: 100%;
    height: 100vh;
}

.content {
    position: auto;
    width: 100%;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.split-text {
    display: flex;
    gap: 20px;
    font-size: 60px;
    color: white;
    font-weight: bold;
    overflow: hidden;
}

.split-text span {
    display: block;
    transition: transform 0.3s ease-out;
}

.main-text {
    color: white;
    font-size: 40px;
    font-weight: bold;
    margin-top: 20px;
    opacity: 0.8;
}
nav {
    position: relative; 
    z-index: 10; 
}
.text {
    color: white;
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.8;
}