
h1 {
	font-size: 2rem;
}

.container-grid {
    display: grid;
    /* justify-content: center; */
/*     align-content: bottom; */
    /* min-height: 100vh; */
    height: 70vh;
    grid-template-columns: repeat(3, 33.333%);
    grid-template-rows: 0.5fr 4fr 0.5fr repeat(4, 1fr);
/*    position: relative;*/
/*    margin: 0;*/
    /* padding: 10px; */
    /* margin: 0; */
    /* position: absolute; */
    /* bottom: 0; */
    /* left: 0; */
    /* right: 0; */
    
}


.container-grid > button {
/*    cursor: pointer;*/
    font-size: 2rem;
    outline: none;
    font-weight: 500;
    background-color: white;
    color: black; 
    border: 0.5px solid black;
    /* padding: 20px; */
    /* text-align: center; */
}
@media (hover: hover) {
    .container-grid > button:hover {
        background-color: #5f788a;
    }
}

.span-three {
    grid-column: span 3;
    background-color: rgba(0, 0, 0, 0);

}

.output {
    display: flex;
    align-items: center;
/*    border-style: solid;*/
    justify-content: center;
    /* justify-content: center; */
    /* justify-content: space-around; */
    flex-direction: column;
    padding: 10px;
}

.task {
/*    border: 2px dashed red;*/
    font-size: 1.7rem;
/*    padding: 0.5em;*/
    margin: 0.1em;
    font-weight: 500;
}

.solution {
    display: flex;
/*    border: 2px solid blue;*/
    font-size: 1.7rem;
    align-items: center;
/*    margin-top: 0;*/
    height: 2.5rem;
}


.counter {
    position: relative;
/*    border: 1px solid black;*/
    margin-bottom: 20px;
}

.number-solved, .avg, .min, .max {
    font-weight: 600;
    font-size: 1.25rem;
}

.avg {
    color: blue;
}

.min {
    color: green;
}

.max {
    color: red;
}

.input-group {
    text-align: left;
}
