body {
  margin: 0;
  padding: 0;
  background-color: rgb(201, 152, 152);
  font-family: Arial, sans-serif;
}

.container {
  width: 80%;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

h1 {
  margin-top: 30px;
  padding: 10px;
  background-color: rgb(242, 188, 148);
  border-radius: 12px;
  color: rgb(161, 76, 34);
  border: 5px solid rgba(165, 114, 4, 0.4);
  text-transform: uppercase;
  font-weight: 800;
}

.scoreboard {
  display: flex;
  justify-content: space-between;
  margin: 0 20px;
  padding: 0 20px;
  font-weight: 900;
  background-color: rgb(224, 156, 104);
  color: rgb(121, 44, 6);
  border-radius: 10px;
}

.gameboard {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.hole {
  width: 100px;
  height: 100px;
  background-color: rgb(155, 98, 44);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin: 23px;
  border: 7px solid rgb(165, 114, 4);
}

.mole {
  width: 80px;
  height: 80px;
  background-color: rgb(242, 188, 148);
  border-radius: 50%;
  position: absolute;
  left: 10px;
  bottom: 0;
  transition: transform 0.2s ease;
}

#start-btn {
  padding: 15px 25px;
  font-size: 20px;
  font-weight: 700;
  background-color: rgb(224, 156, 104);
  color:  rgb(155, 98, 44);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

#start-btn:hover {
  background-color: rgb(99, 53, 30);
}

.hole.has-mole {
  
  background: url(../../public/img/mole.png);
  background-size: 160px;
  background-repeat: no-repeat;
  background-position: 0% -5%;
  background-color: rgb(122, 11, 66);  
}

.swal-no-select {
  user-select: none;
}

