/************* Menu button *************/

.button {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    background-color: var(--text-color);
    color: var(--card-bg-color);
    border-radius: var(--border-radius);
    border: none;
    padding: 5px 10px;
}

.button.btn-big {
    padding: 15px 30px;
}

.button:hover {
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
}

/************* Game control button *************/

.control-btn {
    border-radius: 50%;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    transition: background-color .1s, box-shadow .1s;
    display: flex;
    align-items: center;
    justify-content: center;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.control-btn > * {
    width: 34px;
    transition: .2s;
    pointer-events: none;
}

.control-btn:active {
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
}

/************* Pause button *************/

.mobile-pause {
    height: 40px;
    display: none;
}

.mobile-pause svg {
    width: 40px;
    height: 40px;
    fill: rgb(255, 255, 255, 0.8);
}

.mobile-pause svg:active {
    fill: rgb(255, 255, 255, 0.6);
}

@media only screen and (max-width: 600px) {
    .mobile-pause {
        display: block;
    }
}