@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97vh;
    background: #FCF1DA;
    font-family: 'Inconsolata', monospace;
}

.bg {
    border-radius: 10px;
    background: #272B2C;
    box-shadow: 0px 40px 45px rgba(0, 0, 0, .4);
    width: 900px;
    padding: 25px 0 35px 0px;
    display: flex;
    justify-content: center;
}

.warning {
    text-align: center;
}

.warning span {
    font-weight: bold;
    font-size: 40px;
    color: rgb(155, 0, 21);
}

.score-div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
}

.score-title {
    font-size: 30px;
}

.score-best-div {
    text-align: right;
}

.score-div .score-text {
    margin-bottom: 30px;
    font-size: 30px;
    color: #272B2C;
}

.base {
    display: flex;
    width: 700px;
    height: auto;
    flex-direction: column;
    font: 28px arial;
}

.line {
    display: flex;
    justify-content: space-around;
    margin-top: 15px;
    padding: 0 15px;
}

.line button {
    box-shadow: 0px 3px 3px rgba(0, 0, 0, .7);
    color: #dd4f1f;
    padding: 15px;
    font-weight: bold;
    margin: 0 10px;
    min-width: 50px;
    font-size: 20px;
    background: #2F3336;
    border-radius: 12px;
    border: none;
    text-shadow: 0px 0px 40px #dd4f1f, 0px 0px 80px #dd4f1f;
    text-align: center;
}

#repeat {
    color: #FCF1DA;
}

#repeat:hover {
    opacity: .9;
}

#repeat:active {
    transform: scale(.9);
}

.requested {
    background-color: rgb(155, 0, 21) !important;
    color: #FCF1DA !important;
}

.pressed {
    background-color: #dd4f1f !important;
    color: #FCF1DA !important;
}

.line4 button {
    width: 35px;
    padding: 10px 15px;
}