/* Site specific styles */
body {
    background-color: black;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.title-text {
    font-family: "Orbitron", sans-serif;
    font-size: 4rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.739);
    /* Adjust size as needed */
    font-variant: small-caps;
    position: relative;
    z-index: 1;
}

.title-text span {
    display: inline-block;
    animation: scaleUp 3s infinite ease-in-out;
}

/* Sequential delays */
.title-text span:nth-child(1) {
    animation-delay: 0.1s;
}

.title-text span:nth-child(2) {
    animation-delay: 0.3s;
}

.title-text span:nth-child(3) {
    animation-delay: 0.5s;
}

.title-text span:nth-child(4) {
    animation-delay: 0.7s;
}

.title-text span:nth-child(5) {
    animation-delay: 0.9s;
}

.title-text span:nth-child(6) {
    animation-delay: 1.1s;
}

.title-text span:nth-child(7) {
    animation-delay: 1.3s;
}

.title-text span:nth-child(8) {
    animation-delay: 1.5s;
}

.title-text span:nth-child(9) {
    animation-delay: 1.7s;
}

.title-text span:nth-child(10) {
    animation-delay: 1.9s;
}

.title-text span:nth-child(11) {
    animation-delay: 2.1s;
}

@keyframes scaleUp {

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

    20% {
        transform: scale(1.07);
    }

    40% {
        transform: scale(1);
    }
}

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