@font-face {
    font-family: 'Roboto Mono', serif;

  }

body {
    font-family: "Roboto Mono";
}


section#results {
    text-align: center;
    height: 100vh;
}

h1 {
    font-size: 80px;
}

div.answer {
    font-size: 115px;
    padding-top: 60px;
    padding-bottom: 60px;
    font-weight: bold;

}

h2 {
    text-align: center;
    font-size: 40px;
    padding-bottom: 30px;
}

h3 {
    text-align: center;
    font-size: 30px;
    padding-bottom: 30px;
}

p {
    font-size: 20px;
}

.ne-text {
    max-width: 60%;
    margin: 0 auto;
}

.indicator-wrapper {
    max-width: 60%;
    margin: 0 auto;
}

.indicator-element {
    display: flex;
    justify-content: center;
    align-items: center;
}
.indicator-graph {
    flex-shrink: 0;
    flex-grow: 0;
    
}

.inner-graph {
    width: 200px;
    height: 200px;
    border-bottom: 4px solid black;
    /* background-color: white; */
    display: flex;
    align-items: flex-end;
    position: relative;
}

.indicator-graph .bar {
    width: 74px;
    background-color: #36454F;
    position: absolute;
    left: 63px;
    z-index: 9;
}

.indicator-graph .slo {
    position: absolute;
    z-index: 10;
    width: 100%;
    border-top: 2px dashed black;
} 

.indicator-graph .slo-text {
    position: absolute;
    z-index: 15;
    width: 100%;
    text-align: left;
} 

.indicator-graph .who-text {
    position: absolute;
    z-index: 15;
    width: 100%;
    text-align: right;
} 

.indicator-graph .who {
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 45%;
    border-top: 2px solid black;
} 

.graph-label {
    padding-top: 10px;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    width: 100%;
}

.indicator-text {
    padding-left: 50px;
    text-align: justify;
}

.footer {
    text-align: center;    
    font-size: 14px;
    margin-top: 350px;
}

section#history {
    background-color: white;
    padding-top: 30px;
    padding-bottom: 30px;
}

#history-display .day {
    width: 50px;
    height: 50px;
    margin: 10px; 
}

#history-display .true-day {
    background-color: #EBEBEB;
}

#history-display .false-day {
    background-color: #90EE90;
}

section#solutions {
    background-color: #90EE90;
    padding-top: 30px;
    padding-bottom: 30px;
}