/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000000;
}

/* Container to center content */
.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.container h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #ff2f00;
}

/* Typing effect */
#text {
    border-right: .1em solid #ff2f00;
    white-space: nowrap;
    overflow: hidden;
    width: 0;
    animation: typing 4s steps(40, end), blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { width: 0; }
    to { width: 10.5em; } /* Adjust to the length of your text */
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #ff2f00; }
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        padding: 10px;
    }

    .container h1 {
        font-size: 2em;
    }

    .container p {
        font-size: 1em;
    }
}
