html, body {
    height: 100%;
    overflow: hidden;
}

body {
    min-height: 100%;
    background: linear-gradient(to top, rgb(37, 62, 129), rgb(81, 127, 255));
    color: #fff;
}

button {
    background: rgb(83, 80, 255);
    border-radius: 5px;
    width: 150px;
    height: 50px;
    margin: 10px;
    margin-top: 30px;
    font-size: 30px;
    border: solid 1px #fff;
    color: #fff;
}

#wrapping {
    text-align: center;
    width: 50%;
    margin: 0 auto;
    background: rgb(83, 80, 255);
    border-radius: 10px;
}

#title {
    font-size: 48px;
    font-family: "Roboto", monospace;
}

.timer {
    font-size: 40px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 20px;
    margin-bottom: 10px;
}

.clicked {
    background-color: #fff;
}

button:active {
    color: rgb(83, 80, 255);
    background-color: rgb(226, 226, 226);
    border: solid 3px rgb(109, 106, 255);
    outline: solid 1px rgba(0, 0 , 0 , 0.2);
}