
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #0d1d31; 
    color: white;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    align-items: center;
}

/* Logo Styling */
#logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

#logo img {
    width: 50px; 
    height: auto;
}


nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 90px;
    z-index: 0;
    flex-wrap: wrap; 
}

.nav-btn {
    padding: 10px 35px;
    font-size: 18px;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    border: 2px solid white;
    border-radius: 5px;
    transition: background 0.3s, color 0.3s;
}

.nav-btn:hover {
    background: white;
    color: rgb(0, 102, 235);
}

/* Background (Lines Animation) */
#background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#background canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


header {
    text-align: center;
    padding: 50px;
    margin-top: 80px;
    background: transparent;
    flex: 1 0 auto;
}

h1 {
    font-size: 3rem; 
    margin-bottom: 100px;
    background: transparent;
    color: #add8e6; 
}

p {
    font-size: 1.2rem; 
    background: transparent;
    color: #dcdcdc; 
    max-width: 1000px;
    margin: 0 auto;
}


.content {
    text-align: center;
    padding: 70px;
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}


@media (max-width: 768px) {
    header {
        padding: 30px 10px;
    }

    h1 {
        font-size: 2rem; 
    }

    p {
        font-size: 1rem; 
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    .nav-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; 
    }

    p {
        font-size: 0.9rem;
    }
}
