.buttonContainer .buttonText, .buttonText {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    pointer-events: none
}


#toggleButton {
    position: absolute;
    bottom: -.6rem;
    left: 0;
    right: 0;
    /*width: 3.2rem;*/
    height: 1.3rem;
    cursor: pointer;
    background-color: transparent;
    background-image: url("../img/comecar1.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 10;
    -webkit-animation: pulse 1s infinite;
    -moz-animation: pulse 1s infinite;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1)
    }
    50% {
        -moz-transform: scale(1.1)
    }
    100% {
        -moz-transform: scale(1)
    }
}

.buttonContainer button {
    position: relative;
    width: 200px;
    height: 100px;
    /*background: url('./logo/kaishi.png') center/cover no-repeat;*/
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.buttonContainer .buttonText {
    animation: 1s linear infinite blink
}

@keyframes blink {
    0%, 100% {
        color: #fff
    }
    50% {
        color: #00f
    }
}

.buttonText {
    animation: 1s infinite blink
}