body {
  padding: 0;
  margin: 0;
  text-align: center;
}

ul{
  margin: 0;
  padding: 0;
}

h1 {
  font-family: helvetica, sans-serif;
  font-size: 48px;
  color: #0c2c7e;
  text-shadow: 2px 2px rgba(#0d0049, 0.63);
  display: inline-block;
  margin: 0;
  padding: 0;
}

.hanoi {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hanoi ul {
  list-style: none;
  width: 15%;
  border-bottom: 2px solid black;
  margin: 0px 10px;
}

.tower1 ul {
}

li {
  height: 28px;
  border-radius: 25px;
  margin: 3px 0;
}

.hover {
  background-color: #b6ebff;
}

.disc1 {
  background-color: #e65344;
  margin-left: 40%;
  margin-right: 40%;
  box-shadow: 3px 3px;
}
.disc2 {
  background-color: #e79c30;
  margin-left: 30%;
  margin-right: 30%;
  box-shadow: 3px 3px;
}
.disc3 {
  background-color: #f5f77a;
  margin-left: 20%;
  margin-right: 20%;
  box-shadow: 3px 3px;
}
.disc4 {
  background-color: #4ad682;
  margin-left: 10%;
  margin-right: 10%;
  box-shadow: 3px 3px;
}
.disc5 {
  background-color: #0910c1;
  margin-left: 1%;
  margin-right: 1%;
  box-shadow: 3px 3px;
}
.selected {
  background-color: #e682f6;
}
.won{
  background-color: transparent;
}
.wonImage{
  background-image: url("../assets/win.jpg");
  background-size: cover;
  color: white;
}
