:root {
    height: 100%;
    --roundedness: 10px;
    overflow: hidden;
    background-color: #007a5b;
}

body {
    margin: 0px;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.background {
    background-color: #007a5b;
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0px;
    top: 0px;
    z-index: -100;
    overflow: hidden;
    filter: brightness(80%);
}

.background img {
    overflow: hidden;
}

.content {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#dynamicContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.startHeader {
    color: white;
    text-shadow: 2px 2px #000000;
    text-align: center;
}

.startHeader h1 {
    font-size: 5vh;
    line-height: 5vh;
    margin: 2vh;
}

.startHeader h2 {
    font-size: 4vh;
    line-height: 4vh;
    margin: 2vh;
}

.startHeader h3 {
    font-size: 1.75vh;
    line-height: 1.75vh;
    margin: 2vh;
}

.startHeader h4 {
    font-size: 8vh;
    margin-top: 8vh;
}

#startReflectionButton {
    width: 300px;
}

#startClassificationButton {
    width: 300px;
}

.startButtonContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.buttonContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
    gap: 8px;
}

.questionContainerContainer {
    width: 100vw;
    display: flex;
    justify-content: center;
}

.questionContainer {
    text-align: center;
    width: 90vw;
    max-width: 150vh;
    font-size: 3vh;
    color: rgb(247, 247, 247);
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: var(--roundedness);
    padding: 15px;
    margin: 15px;
    font-weight: 500;
    user-select: none;
    -webkit-user-select: none;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 4vh;
    margin: 4vw;
    color: white;
    user-select: none;
    -webkit-user-select: none;
    text-align: center;
}

.agreeButtons {
    display: flex;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.scaleButtons {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: background-color linear 0.2s;
}

#agreementScale {
    width: 90vw;
    height: 25px;
    background-color: white;
    border-radius: 25px;
    padding: 2px;
    display: flex;
    align-items: center;
}

#agreementThumb {
    width: auto;
    height: 0px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: black;
    transition: margin-left ease-out 0.05s, height linear 0.05s;
}

.results {
    gap: 5px;
    color: white;
    overflow: scroll;
    max-width: 98vw;
    height: calc(100vh - 4vh - 8vw - 4vh);
}

.results_title {
    font-size: larger;
    text-align: center;
}

.resultContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    text-align: center;
    line-height: 100%;
}

.resultSlider {
    width: 100%;
    background-image: linear-gradient(to right, rgb(234, 234, 234), rgb(109, 109, 109));
    height: 10px;
    border-radius: var(--roundedness);
}

.resultThumb {
    width: 5%;
    height: 100%;
    background-color: black;
    position: relative;
    border-radius: var(--roundedness);
}

#responses {
    overflow: scroll;
    max-height: 60vh;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#proceedBtn2 {
    width: 300px;
}

.summaryQuestion {
    background-color: #00bc90;
    padding: 10px;
    margin: 10px;
    border-radius: var(--roundedness);
    color: white;
}

.summaryResponse {
    width: 100%;
    display: flex;
    justify-content: center;
}

.summarySelect {
    background-color: #ffffff;
    border: none;
    border-radius: var(--roundedness);
    padding: 10px;
    color: #000000;
}

.resultCoord {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resultCanvasContainer {
    display: flex;
    justify-content: center;
    align-items: center;
}

.resultCanvasContainer div {
    width: 100px;
}

#resultsCanvas {
    width: 65vw;
    height: 65vh;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: var(--roundedness);
    padding: 5px
}

#restartButton {
    width: 300px;
}

@media screen and (orientation: landscape) {
    .content {
        margin-left: 20%;
        margin-right: 20%;
    }
}

@media screen and (orientation: portrait) {
    .background img {
        transform: rotate(-90deg) translateX(-100%);
        transform-origin: top left;
        width: 100vh;
        height: 100vw;
    }
}