#main {
    background-image: url("../../blocks/check_reading/images/background.jpg");
    background-size: cover;
    height: 90vh;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

#category-grid {
    display: flex;
    flex-direction: row;
    width: 88vw;
    user-select: none;
    justify-content: space-around;
}

#items {
    width: 400vw;
    height: 60vh;
}

#instructions {
    display: flex;
    justify-content: center;
    font-size: 3vh;
}

.category-div {
    display: flex;
    width: 30vmin;
    border: black 5px solid;
    background-color: lightyellow;
    justify-items: center;
    justify-content: center;
    align-items: center;
    padding: 2vmin;
    text-align: center;
}

.category img {
    width: 20vmin;
    height: auto;
}


#items {
    display: flex;
    align-items: center;
    column-gap: 3vw;
    justify-content: center;
}

.item img {
    width: auto;
    height: 25vh;
}

.item {
    width: 20vw;
    height: fit-content;
    border: 2px black solid;
    padding: 1vmin;
    background-color: white;
}

.item-caption {
    font-size: 1.5vw;

}

#dialog-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#dialog-box {
    width: 25%;
    height: auto;
    background-color: white;
    border: 5px black solid;
    font-size: 2vh;
    display: flex;
    flex-direction: column;
    padding: 1vmin;
}

#buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
 #score {
     background-color: aliceblue;
     border: 1px solid dodgerblue;
     width: fit-content;
 }