#hero-scene {
    height: 500px;
    width: 500px;

    /* hero section height */
    overflow: hidden;
}

@media (max-width: 850px) {
    #hero-scene {
        height: 400px;
        width: 400px;
    }
}

@media (max-width: 500px) {
    #hero-scene {
        height: 340px;
        width: 340px;
    }
}

@media (max-width: 360px) {
    #hero-scene {
        height: 280px;
        width: 280px;
    }
}

#typed-text {
    color: #2D68C4;
}

#caret::after {
    content: "|";
    margin-left: 4px;
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

h1 {
    line-height: 1.4;
}