#buttons {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.category-div {
    display: flex;
    width: 30vmin;
    height: fit-content;
    border: black 1vmin solid;
    background-color: lightyellow;
    justify-items: center;
    justify-content: center;
    align-items: center;
    font-size: 2vh;
    padding: 1vmin;
}

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

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

.container {
    position: relative;
}

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

#instructions1 {
    position: absolute ;
    top: 30% ;
    left: 18%;
    width: 70%;
    z-index: 10;
}

.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;

}

#items {
    display: flex;
    align-items: start;
    column-gap: 3vw;
    justify-content: center;
    padding: 5vmin;
    width: 400vw;
    height: 60vh;
}

#main {
    position: relative;
    background-size: cover;
    height: 90vh;
    display: flex;
    justify-items: center;
    justify-content: center;
    align-items: center;
}

 #score {
     background-color: aliceblue;
     border: 1px solid dodgerblue;
     width: fit-content;
     position: absolute;
     right: 1vw;
     bottom: 1vh;
 }