body{
    background: #333333;
}
.tiles{
    margin: 50px auto;
    width: max-content;
    display: grid;
    grid-template-columns: repeat(5, 100px);
    gap: 20px;
}

.tile{
    height: 100px;
    background: #111111;
    border: 5px solid #444444;
}

h1, h2{
    text-align: center;
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-top: 50px;
    border: white solid 2px;
    padding: 10px;
    margin-left: 50px;
    margin-right: 50px;
}
.win-overlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.win-message {
  background: white;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
}

.win-message h2 {
  margin-bottom: 15px;
}
