        .soundButton {
            width: 117px;
            height: 100px;
            background-image: url("images/button.png");
        }

        .soundButton.play {
            background-image: url("images/sound.png");
        }

        .stringContent {
            height: 82px;
            position: relative;
            top: 0px;
            left: 0px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .strokeText {
            color: white;
            z-index: 0;
            font-family: "Comic Sans MS";
            font-size: 40px;
            user-select: none;
        }

        .strokeText::before {
            content: attr(data-storke);
            position: absolute;
            -webkit-text-stroke: 6px gray;
            z-index: -1;
        }