body {
    background-color: rgb(20, 20, 20);
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

#test {
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: calc(18%);
    align-items: center;
    width: clamp(150px, 400px, 400px);
    padding: 30px;
    border-radius: 5px;
    background-color: rgb(150, 11, 11);
    cursor: pointer;
    color: white;
    user-select: none;
}

#test-description {
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: .5px;
}

#test-time {
    margin-top: 20px;
    padding: 10px 0px 10px 0px;
    width: 100%;
    border-radius: 10px;
    border: 3px solid rgb(131, 8, 8);
    text-align: center;
    font-size: 2rem;
}