#page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    width: 960px;
}

#options{
    display: flex;
    flex: 1 1 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid black;

}
.container{
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    border: 1px solid black;
    width: 960px;
    height: auto;
    aspect-ratio: 1/1;
    margin: 20px auto;
    align-items: center;
    justify-content: space-evenly;
}

.tile{
    display: flex;
    border: 1px solid darkgrey;
    gap: 0px;
    box-sizing: border-box;
}

.hovered{
    background-color: #000;
    opacity: 50%;
}
