@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Micro+5&family=Orbitron:wght@900&display=swap');

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #03051e;
    color: #ffffff55;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.container {
    max-width: 800px;
    padding: 20px;
    text-align: center;
}

header {
    margin-bottom: 20px;
}

/*
h1 {
    color: #101fc8a2;
    font-size: 12ch;
    font-family: "Micro 5", sans-serif;
}*/


/* first animation not mobile friendly
.wave-title {
    font-family: "Micro 5", sans-serif;
    font-size: 12ch;
    
    color: #101fc8a2;
  
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.wave-title span {
    display: inline-block;
    animation: colorWave 2s infinite;
    animation-delay: calc(var(--i) * 0.1s);
    
}

@keyframes colorWave {

    0%,
    100% {
        color: #101fc8a2;
    }

    50% {
        color: #2f81dfa2;
    }

}    

*/

.wave-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
    color: #101fc8a2;
    font-size: 12ch;
    font-family: "Micro 5", sans-serif;
}

.wave-title .word {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 0.2em;
}

.wave-title span {
    display: inline-block;
    animation: waveColor 2s infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes waveColor {

    0%,
    100% {
        color: #101fc8a2;
    }

    50% {
        color: #4d6aff;
    }
}

/* Mobile adjustments */
@media (max-width: 600px) {
    .wave-title {
        font-size: 10ch;
        flex-direction: column;
    }

    .wave-title .word {
        justify-content: center;
    }
}




h2 {
    font-size: 7ch;
}


main {
    color: #0f52abd2;
    font-family: "Micro 5", sans-serif;
    font-weight: 50ch;
    font-style: normal;
}

/*fade animation*/

h2 {
    color: #0f52abd2;
    font-family: "Micro 5", sans-serif;
    font-weight: 500;
    font-style: normal;
    animation: fadeText 3s infinite alternate;
}

@keyframes fadeText {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}


/* GLOW
h2 {
    color: #0f52abd2;
    font-family: "Micro 5", sans-serif;
    font-weight: 500;
    text-shadow: 0 0 1.5px #0f52abd2, 0 0 6px #0f52abd2, 0 0 7px #0f52abd2;
    animation: glow 3s infinite alternate;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 1.5px #0f52abd2, 0 0 2.5px #0f52abd2;
    }

    50% {
        text-shadow: 0 0 3px #0f52abd2, 0 0 6px #0f52abd2, 0 0 10px #0f52abd2;
    }

    100% {
        text-shadow: 0 0 1.5px #0f52abd2, 0 0 2.5px #0f52abd2;
    }
} */

/* breathing effect
h2 {
    color: #0f52abd2;
    font-family: "Micro 5", sans-serif;
    animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
} */

p {
    line-height: 1.6;
}

.btn {
    position: relative;
    /* allow z-index to work */
    z-index: 10;
    /* above particles */
    display: inline-block;
    padding: 15px 65px;
    background-color: #022c5773;
    /* make it fully visible */
    color: #940b9bcc;
    /* visible text */
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    font-size: 170%;
    font-weight: bold;
    transition: background-color 0.3s;
    cursor: pointer;
    /* shows pointer on hover */
}

.btn:hover {
    background-color: #00438b71;
    color: #0750eef6;
}


footer {
    margin-top: 50px;
}

footer p {
    color: #999;
    font-size: 14px;
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 0;
}

.all-rights-reserved {
    color: #4d4d4d;
    font-size: x-small;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 70px;
    /* Adjust height as needed */
    text-align: center;
    line-height: 100px;
    /* Center content vertically */
}