*{
	padding: 0;
	margin: 0;
}

a{
    text-decoration: none;
}

.questionFrame{
    margin: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;

    display: grid;
}

.question2Part{
    width: 100vw;
    height:  85vh;
    margin-top: 4vh;
    background-color: #f1efef;

    display: grid;
    grid-template-columns: auto; /* later split the last row into multiple columns */
    grid-template-rows: 17vh 28vh 40vh; /* 3 rows; adds to 85vh */
}

.topRow{
    display: grid;
    grid-template-columns: 10vw 80vw 10vw;
}

.actualQuestionPart{
    grid-row: 1;
    grid-column: 2;
}

#questionText{
    grid-column: 1;
    font-family: Inter;
    font-size: 1.5rem;
    font-weight: bolder;
    text-align: center;
}

.selectionRows{
    margin-top: 4vh;
    grid-row: 2;

    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 7vh 7vh 7vh 7vh;
    gap: 1vh;
}

.row{
    width: 100vw;
    height: 7vh;
    display: grid;
    grid-template-rows: 85vh;
    gap: 2vw;
}

.row-odd{
    grid-template-columns: 10vw 10vw 10vw 10vw 10vw 10vw 10vw 10vw; /* middle adds to 80vw */
}
.row-even{
    grid-template-columns: 15vw 12vw 12vw 12vw 12vw 12vw 15vw; /* middle adds to 80vw */
}

.buttonPart{
    grid-row: 3;

    display: grid;
    grid-template-columns: 40vw 20vw 40vw;
    grid-template-rows: 13vh 14vh 13vh; /* adds to 40 vh*/
}

.enterButton{
    grid-column: 2;
    grid-row: 2;
    width: 13vw;
    height: 5vh;

    background-color: #2c2c2c;
    margin-left: 3vw;
}

.enterButton:hover{
    cursor: pointer;
    background-color: #dfad39;
}

.enterText{
    font-family: Inter;
    font-size: 1.3rem;
    font-weight: bold;
    text-align: center;
    color: rgb(255, 255, 255);
}

#analyticalBox, #activateBox, #ideaBox, #respBox{
    grid-column: 2;
}
#adaptBox, #achieveBox, #contextBox, #learnBox{
    grid-column: 3;
}
#restoreBox, #devBox, #sigBox, #relBox, #incBox{
    grid-column: 4;
}
#connectnessBox, #consistBox, #comBox, #compBox{
    grid-column: 5;
}
#arrangeBox, #futureBox, #empthBox, #beliefBox, #indBox{
    grid-column: 6;
}
#selfBox,  #commandBox{
    grid-column: 7;
}

.row button{
    height: 5vh;

    font-family: Inter;
    font-size: 1rem;
    text-align: center;

    background-color: #D9D9D9;
}

.row button:hover{
    cursor: pointer;
}