* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgb(139, 138, 138);
}

.container {
    position: absolute;
    color: black;
    top: 25%;
    display: block;
    padding: 80px 0;
    justify-content: center;
    place-items: center;
    width: 100%;
    text-align: center;   
    background-color: rgb(11, 79, 226);
}

p {
    font-family: fantasy;
    font-size: 32px;
}
#timer {
    position: relative;
    top: 30px;
    font-size: 24px;
    color: white;
}

button {   
    position: relative;
    align-items: center;
    top: 50px;
    background-image: linear-gradient(144deg,#911de4, #5B42F3 50%,#00DDEB);
    border-radius: 30px;
    color: white;
    font-size: 24px;
    text-decoration: none;
    cursor: pointer;
    border: 0;
    user-select: none;
    padding: 19px 24px;
}