.container {
    display: flex;
    width: 75vw;
    flex-direction: row;
    flex-wrap:wrap;
    padding: 10px;
    height:130px;
    overflow-y: hidden;
    align-content: flex-start;
}

.container:focus {
    outline: none;
}

.word {
    display: flex;
    height: fit-content;
}

.letter {
    font-size: 30px;
    color: rgb(97, 97, 97);
    user-select: none;
    height:fit-content;
}

.correctLetter {
    color: rgb(221, 221, 221);
}

.wrongLetter {
    color: rgb(223, 14, 80);
}

.space {
    width: 15px;
    position: relative;
}

.wrongSpace {
    position: relative;
}

.wrongSpace::after {
    content: "";
    position: absolute;
    bottom: 10px;
    /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 2px;
    border-radius: 3px;
    background-color: rgb(223, 14, 80);
}


.caret {
    position: fixed;
    border-radius: 10px;
    transition: left 0.1s ease;
    fill: rgb(15, 198, 143);
}

.blink {
    animation: blink 0.8s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}