body {
    margin: 0;
    overflow: hidden;
    background-color: #111;
}

#grid-container {
    position: absolute;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

#grid {
    position: absolute;
    display: flex;
    flex-direction: column;
    transform: translate(0px, 0px);
}

.grid-row {
    display: flex;
}

.grid-tile {
    width: 100px;
    height: 100px;
    background-color: rgb(50, 50, 50);
    border: 1px solid rgb(80, 80, 80);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-tile.clicked {
    background-color: rgba(255, 255, 255, 0.4) !important;
}

.tile-number {
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px black;
}