    *   
    {
        margin: 0;
        padding: 0;
        font-family: 'poppins', sans-serif;
        box-sizing: border-box;
    }

    .container{
        width: 100vw;
        height: 100vh;
        padding: 0 8%;
        background-image: url("images/background.jpg");
        background-size: cover;
        background-position: center;
        position: relative;
        z-index: 1;
    }

    .logo{
        width: 300px;
        padding: 200px 0;
        cursor: pointer;
        display: block;
        margin: 0 auto;
    }

    .content{
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        width: 100%;

    }

    .content h1{
        font-size: 50px;
        font-weight: 250;
    }


    .startup{
        width: 150px;
        position: absolute;
        right: 20%;
        bottom: 40%;
        animation: startup 4s linear infinite;
    }

    @keyframes startup{
        0%{
            bottom: 0;
            opacity: 0;
        }
        100%{
            bottom: 100%;
            opacity: 1;
        }
    }
    /* Typing animation text */
    /* Typing animation text */
    #typing-text{
        color: #ffffff;        /* default text = white */
        white-space: nowrap;
    }

    /* Blue highlighted word */
    .blue{
        color: #49acfc;
        text-shadow:
            0 0 6px rgba(73, 172, 252, 0.6),
            0 0 12px rgba(73, 172, 252, 0.6),
            0 0 20px rgba(73, 172, 252, 0.8);
        animation: glowPulse 2s ease-in-out infinite;
    }

    /* Blinking cursor */
    .cursor {
        display: inline-block;
        margin-left: 4px;
        color: #49acfc;
        animation: blink 1s infinite;
    }

    /* Cursor blink animation */
    @keyframes blink {
        0%, 50%, 100% {
            opacity: 1;
        }
        25%, 75% {
            opacity: 0;
        }
    }
    .bottom-link{
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
    }

    .bottom-link a{
        color: #49acfc;
        text-decoration: none;
        font-size: 20px;
        transition: 0.3s;
    }

    .bottom-link a:hover{
        text-decoration: underline;
        color: #7bc4ff;
    }
    .glow {
    color: #00aaff;
    text-shadow:
        0 0 5px #00aaff,
        0 0 10px #00aaff,
        0 0 20px #00aaff;
    font-weight: 400;
    }
/* Bottom buttons container */
.bottom-buttons{
    position: absolute;
    bottom: 300px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Common button style */
.btn{
    padding: 14px 28px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

/* Primary button (Visit Website) */
.primary-btn{
    border: 2px solid #49acfc;
    color: #49acfc;
    background: transparent;
}

.primary-btn:hover{
    background: #49acfc;
    color: #fff;
    box-shadow:
        0 0 10px rgba(73, 172, 252, 0.6),
        0 0 20px rgba(73, 172, 252, 0.6);
}

/* Secondary button (Subscribe) */
.secondary-btn{
    border: 2px solid #49acfc;
    color: #49acfc;
    background: transparent;
}

.secondary-btn:hover{
    background: #49acfc;
    color: #fff;
    box-shadow:
        0 0 10px rgba(73, 172, 252, 0.6),
        0 0 20px rgba(73, 172, 252, 0.6);
}

