* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
main {
  display: flex;
  flex-direction: row;
  align-items: center;
}
body {
  background-image: url("./images/iceSheet.jpg");
  /* background-repeat: repeat; */
  background-size: inherit;
  display: flex;
  flex-direction: column;
  width: 100vw;
  align-items: center;
}
#game-area {
  margin-top: 100px;
  width: 400px;
}
.row {
  width: 400px;
  display: flex;
  flex-direction: row;
}

.cell {
  margin: 2px;
  width: 80px;
  height: 80px;

  display: flex;
  justify-content: center;
  align-items: center;
}
.empty-cell {
  box-shadow: inset 5px 5px 15px 5px rgba(0, 0, 0, 0.73);
  border-radius: 4px;
}
#results {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
}

.result {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin: 1px;
  border: 1px solid transparent;
}
.empty {
  box-shadow: inset 5px 5px 15px 5px rgba(0, 0, 0, 0.73);
}
.correct-guess {
  background-color: rgba(68, 189, 64, 0.664);
  box-shadow:
    0 0 5px rgba(128, 216, 135, 0.8),
    0 0 8px 2px rgba(68, 189, 64, 0.6),
    0 0 10px 4px rgba(4, 136, 33, 0.4);
}
.wrong-place {
  background-color: rgba(7, 130, 187, 0.658);
  box-shadow:
    0 0 5px rgba(122, 170, 224, 0.8),
    0 0 8px 2px rgba(46, 138, 180, 0.6),
    0 0 10px 4px rgba(7, 130, 187, 0.4);
}

#buttons {
  margin-top: 20px;
}
.play-button {
  width: 100px;
  height: 100px;
  border-radius: 10px;
  border: none;
  margin: 5px;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.73);
  cursor: pointer;
}
.btn-image {
  width: 100px;
  height: 100px;
  border-radius: 10px;
}

#guess-btn {
  height: 150px;
  width: 150px;
  border: none;
  border-radius: 15px;
  box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.73);
  cursor: pointer;
  margin-left: 20px;
}
#guess-img {
  height: 150px;
  width: 150px;
  border-radius: 15px;
}

.played-rune {
  width: 70px;
  height: 70px;
  border-radius: 4px;
}

.used {
  display: none;
  pointer-events: none;
}
