* {
    padding: 0;
    margin: 0;
    border: none;
    box-sizing: content-box;
}
body {
    background-color: rgb(2, 40, 45);
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body > div {
    width: 300px;
    background-color: gray;
}

.accurate {
    height: 150px;
    margin: 5px 0;
    border-radius: 10px;
}
.watch {
    height: 100px;
    margin: 5px 0;
    border-radius: 10px;

}
.stop {
    height: 100px;
    margin: 5px 0;
    border-radius: 5px;
}
.dash {
    height: 200px;
    margin: 5px 0;
    border-radius: 5px;
    box-sizing: border-box;
    overflow-y: scroll;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: 200;
    letter-spacing: 8px;
    font-size: 0.8rem;
}

.data0 {
    font-family: monospace;
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 100% / 1fr 0.2fr 1fr 0.2fr 1fr;
    align-items: center;
    justify-items: center;
}

.data1 {
    font-family: 'Times New Roman', Times, serif;
    font-size: 1.5rem;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 100% / 1fr 0.1fr 1fr 0.1fr 1fr 0.1fr 1fr;
    align-items: center;
    justify-items: center;
}

svg {
    width: 30px;
    fill: rgb(44, 37, 37);
}
.data2{
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 100% / 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
}

button {
    background-color: transparent;
}
.dashboard>li{
    margin-left: 50px;
}
.dash::-webkit-scrollbar {
    width: 2px;
    background-color: rgb(171, 170, 164);
    border-radius: 5px;
}
.dash::-webkit-scrollbar-thumb {
    background-color: rgb(93, 111, 107);
    border-radius: 5px;
}

::marker {
    font-family: monospace;
    letter-spacing: 2px;
    color: rgb(18, 101, 126);
}
button:disabled>svg {
    fill: rgb(91, 88, 88);
}