/* Таймер */
#timer {
    width: 90px;
    height: 50px;
    font-size: 14px;
    font-family: 'PixelFont', monospace;
    background-color: #ffcc00;
    border: 3px solid #000;
    padding: 8px;
    border-radius: 5px;
    box-shadow: 3px 3px 0px #888;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Кнопки */
.icon-button {
    width: 90px;
    height: 50px;
    background-color: #ffcc00;
    border: 3px solid #000;
    box-shadow: 3px 3px 0px #888;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
}

.icon-button i {
    color: #000;
}

.icon-button:hover {
    background-color: #ff9900;
}
