﻿* {
    box-sizing: border-box;
}

html {
    box-sizing: inherit;
    font-family: "Noto Sans", Arial, Helvetica, sans-serif;
    height: 100vh;
}

body {
    height: 100%;
}

.wrapper {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    padding: 30px;
}

.timer {
    padding: 15px;
    text-align: center;
    width: 180px;
}

.timer-label {
    background-color: #222;
    border: 1px solid #fff;
    border-radius: 5px;
    box-shadow: 0 0 3px 0 rgb(0, 0, 0);
    color: #fff;
    display: block;
    font-size: 0.7rem;
    margin-bottom: 10px;
    padding: 5px 10px;
}

.timer-value {
    text-shadow: 0 0 3px rgb(0, 0, 0);
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

@supports (-webkit-text-stroke: 1px black) {
    .timer-value {
        -webkit-text-stroke:1px black;
        -webkit-text-fill-color: white;
    }
}