.TextMessage {
    text-align: center;
    pointer-events: none;
    border-radius: 8px;
    background: #ffffffd5;
    padding: 10px;
    border: 2px solid rgb(0, 0, 0);
    border-bottom: none;
    font-family: 'press_start_2pregular';
}

.TextMessage_button {
    font-family: 'press_start_2pregular';
    color: black;
    background-color: #ffffff;
    font-size: 0.6em;
    font-weight: 300;
    box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, 0.2);
    transition: 0.1s;
    text-shadow: 0px 2px rgba(0, 0, 0, 0.2);
    appearance: none;
    outline: none;
    margin: 0;
    cursor: pointer;
    position: absolute;
    right: 5px;
    bottom: 3px;
    padding: 3px 3px;
    border-radius: 8px;
    animation: bounce 1s linear infinite;
    margin-top: 10px;
    z-index: 60;
    pointer-events: auto;
}

.textpolygon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffffd5;
    top: 100%;
    z-index: 70;
}

.TextSpeaking_p{
    font-family: 'press_start_2pregular';
    color: rgb(66, 66, 66);
	text-align: center;
    margin: 2px;
    font-size: 14px;
    z-index: 100;
    border-bottom: 2px dashed rgba(134, 134, 134, 0.301);
    overflow-wrap: break-word;
}

.TextMessage_p {
    font-family: 'press_start_2pregular';
    color: black;
	text-align: center;
    padding: 10px;
    font-size: 14px;
    z-index: 100;
    max-width: 200px;
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.TextMessage_info {
    font-family: 'press_start_2pregular';
    color: black;
	text-align: center;
    padding: 10px;
    max-width: 1000px;
    font-size: 16px;
    z-index: 100;
    margin-bottom: 10px;
    overflow-wrap: break-word;
}

.TextMessage span {
	opacity: 0;
}
.TextMessage span.revealed {
	opacity: 1;
}

@keyframes bounce {
    20%, 50%, 80%, to {
        transform: translateY(0px);
    }
    40% {
        transform: translateY(-2px);
    }
    70% {
        transform: translateY(-1.5px);
    }
    90% {
        transform: translateY(-0.5px);
    }
}

.TextMessage_button:hover {
    animation: none;
    box-shadow: inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);
}

.TextMessage_button:active {
    animation: none;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0px 0px rgba(0, 0, 0, 0.2);
}

.is-pressed {
    animation: none;
    box-shadow: inset 0 0 0 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0px 0px rgba(0, 0, 0, 0.2);
}