* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    padding: 4rem;
    background-color: rgb(101, 189, 230)
    ;
    font-size: 2rem;
    font-family: sans-serif;
}

.dashboard {
    width: 100%;
    height: 85vh;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
}

.section--first {
    grid-column: 1 / 7;
    grid-row: span 13;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 4rem;
    padding-top: 0;
    padding-bottom: 2rem;
}

.card {
    background-color: rgb(15, 240, 202);
    height: 50%;
    width: 48%;
    box-shadow: 0rem 1rem 2rem 0 rgba(0, 0, 0, 0.2);
}

.card--first {
    font-size: 200%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section--second {
    grid-column: 7 / 13;
    grid-row: span 13;
    background-color: rgb(102, 197, 145);
    box-shadow: 0rem 1rem 2rem 0 rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem;
}

canvas {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.button {
	padding: 1rem 2rem;
	border-radius: 0.5rem;
	color: white;
	width: 10rem;
}

.button--start {
	background: rgb(75, 145, 81);
}

.button--stop {
	background: #8a4343;
}

.button--reset {
	background: #416d8b;
}

.timerText {
	color: rgb(26, 26, 26);
}

.spanWrapper {
	background: rgb(221, 221, 221);
	border-radius: 1rem;
	padding: 0.8rem 2rem;
	border-style: outset;
	border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
	width: 31rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.miliText {
}


@media screen and (max-width: 87.5rem) {
    .dashboard {
        grid-template-rows: repeat(12, 20rem);
        height: auto;
        gap: 2rem;
    }

    .section--first {
        grid-column: 1 / -1;
        grid-row: 1 / 7;
        padding: 0;
        padding-bottom: 2rem;
    }

    .card {
        flex-grow: 1;
    }

    .section--second {
        grid-column: 1 / -1;
        grid-row: 7 / 13;
    }
}