/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
}

/* Typing Animation */
.typed-text {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    border-right: 3px solid white; /* Simulates the typing cursor */
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(30) 1s forwards, blink 0.75s step-end infinite;
}

/* Keyframes for typing effect */
@keyframes typing {
    from {
        width: 0;
    }
    to {
        width: 29ch; /* Adjust the width according to the number of characters */
    }
}

/* Keyframes for blinking cursor */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    background-color: #ff4500; /* Button color */
    color: white;
    padding: 12px 24px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #29ca4c;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .typed-text {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .typed-text {
        font-size: 1.5rem;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}
