* {
    margin: 0;
    padding: 0;
    font-family: Verdana, "Geneva CY", "DejaVu Sans", sans-serif;
}

body {
    background-color: #98ad13;
    user-select: none;
}

#no_sleep {
    position: absolute;
    left: 10px;
    top: 14vh;
    opacity: 0; /* Полупрозрачность элемента */
    height: 10vh;
}

div {
    display: grid;
}

.blue, .sand {
    justify-items: center;
    align-items: center;
    overflow: hidden;
    text-align: center;
}

.blue {
    background-color: #c1dec9;
    color: #0808ff;
    font-size: 18vh;
    font-weight: 900;
}

.sand {
    background-color: #dcde88;
    font-size: 4.5vh;
    cursor: pointer;
}

#container {
    background-color: #98ad13;
    width: 100vw;
    height: 99.5vh;
    grid-template-rows: 12vh;
    justify-items: center;
    align-items: center;
}

#status {
    background-color: #dcde88;
    width: calc(100vw - 1vh);
    height: 11vh;
    color: antiquewhite;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-items: center;
    align-items: center;
}

.square {
    background-color: darkslategrey;
    font-size: 4vh;
    width: 10vh;
    height: 10vh;
    justify-items: center;
    align-items: center;
    cursor: pointer;
}

#sleep_switcher {
    color: aliceblue;
    font-size: 8vh;
}

#content {
    background-color: #98ad13;
    width: calc(100vw - 1vh);
    height: 87.5vh;
    grid-template-columns: 11vh calc(50vw - 12.25vh) calc(50vw - 12.25vh) 11vh;
    grid-template-rows: 2fr 1fr 1fr 1fr 1fr 1fr;
    grid-row-gap: 0.5vh;
    grid-column-gap: 0.5vh;
    justify-items: stretch;
    align-items: stretch;
}

#tim {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

#prev_exercise {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 2;
    grid-row-end: 3;
}

#exercise {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}

#next_exercise {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
}

#continue {
    font-size: 4.5vh;
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 4;
}

#approach {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 4;
    grid-row-end: 5;
    font-size: 8vh;
}

#start {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
}

#pause {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 5;
    grid-row-end: 6;
}

#prev_training {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 7;
}

#training {
    grid-column-start: 2;
    grid-column-end: 4;
    grid-row-start: 6;
    grid-row-end: 7;
}

#next_training {
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 7;
}