body {
    background-color: rgb(142, 156, 182);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    /* This ensures the body takes up the full viewport height */
    margin: 0;
}

#type {
    width: 500px;
    height: 150px;
    border-radius: 4px;
    padding: 5px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    outline-color: rgb(171, 125, 211);
    outline-width: 0.5px;
}


/* TYPiNG BOARD */
#conv {
    font-family: 'Droid Sans Mono', monospace;
    font-size: 25px;
    line-height: 35px;
    background-color: rgb(220, 217, 232);
    border: 1px solid #ccc;
    min-height: 100px;
    padding: 5px;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 850px;
    border-radius: 4px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

#countNum {
    color: rgb(179, 17, 85);
}

.head {
    color: darkblue;
    background-color: aqua;
    padding: 5px;
    width: 500px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

/* markers */
.current {
    text-decoration: underline;
    text-decoration-color: transparent;
    text-decoration-style: solid;
    animation: blink 900ms infinite;
}

@keyframes blink {
    0% {
        text-decoration-color: transparent;
        /* Start with transparent underline */
    }

    50% {
        text-decoration-color: rgb(19, 255, 2);
        /* Change to the desired underline color */
    }

    100% {
        text-decoration-color: transparent;
        /* End with transparent underline */
    }
}

.correct {
    background-color: rgb(128, 244, 244);
}

.incorrect {
    background-color: rgb(255, 0, 106);
    color: #ffffff !important;
}

.neutral {
    background-color: rgb(236, 218, 19);
}

button {
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    background-color: aqua;
    cursor: pointer;
    border: 0px;
    padding: 0.25em 0.5em;
    box-shadow: 1px 1px 0px 0px, 2px 2px 0px 0px, 3px 3px 0px 0px, 4px 4px 0px 0px, 5px 5px 0px 0px;
    position: relative;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

button:active {
    box-shadow: 0px 0px 0px 0px;
    top: 5px;
    left: 5px;
}

#pressK {
    color: rgb(255, 238, 1);
}

.enter {
    color: rgb(139, 141, 137);
}

/*  */