html {
    font-size: 10px;
}

.wrap {
    width: 98%;
    margin: 1%;
    border: 1px solid #000000;
    font-size: 2rem;
    padding: 1rem;
}

.menu {
    display: flex;
    justify-content: center;
}

select {
  font-size: 2rem;
}

.muneItem {
    margin: 1rem;
}

#startButton {
    font-size: 2rem;
    text-align: center;
    background-color: #cccccc;
    box-shadow: 0 5px 0 #aaaaaa;
    transition: 0.3s;
}

.result {
    margin-right: 1rem;
}

.modal {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #00000090;
}

.countDownOuter {
    width: 60%;
    height: 40%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#countDown {
    font-size: 3rem;
}

#field {
    text-align: center;
    background-color: #E8A007;
    border: 2px solid #B535E8;
}

.numberButton {
    width: 4rem;
    height: 4rem;
    margin: 1rem;
    font-size: 2rem;
    padding: 0;
    font-weight: bold;
    text-align: center;
    background-color: #1EE88E;
}

.numberButton:active {
    background-color: #059C58;
}

.clicked {
    background-color: #808080;
}

#time {
    display: block;
    text-align: right;
}


.buttonShapeCircle {
    border-radius: 30px;
}

.buttonShapeSquare {
    border-radius: 10px;
}