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

body, html {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
    /*background-color: #000;*/
}

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

.content {
    color: #fff;
    position: relative;
    z-index: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.company-name {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    z-index: 10;
    opacity: 1;
}

.company-name h1 {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    animation: colorCycle 20s infinite;
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

@keyframes colorCycle {
    0%, 100% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #e60073, 0 0 40px #e60073;
    }
    20% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #4dc3ff, 0 0 40px #4dc3ff;
    }
    40% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #7d4dff, 0 0 40px #7d4dff;
    }
    60% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #00e64d, 0 0 40px #00e64d;
    }
    80% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 30px #ff9900, 0 0 40px #ff9900;
    }
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}
