body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
}

.container {
    text-align: center;
    position: relative;
    top: -100px;
}

#typing-text {
    font-size: 6vw;
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    padding: 20px;
    max-width: 90%;
    margin: 0 auto;
}

@keyframes typing {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.color1 {
    color: #056839;
}

.color2 {
    color: #8cc540;
}

.cursor {
    color: #8cc540;
    animation: flashCursor 1s infinite;
}

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

@media (max-width: 768px) {
    #typing-text {
        font-size: 11vw;
    }
}
