* {
  background-color: #333;
  color: white;
}

.header{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #333;
  color: white;
  font-size: 30px;
}

.disk_count_container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  font-size: 30px;
}

.disk_count_container input{
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border: none;
}

.data_container{
  display: flex;
  justify-content: center;
  gap : 250px;
  margin-top: 30px;
  margin-bottom: 50px;
}

.move_count_container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #333;
  color: white;
  font-size: 30px;
  margin-bottom: 0px;
}

.reset_button_container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #333;
  color: white;
  font-size: 30px;
}

.reset_button_container button{
  background-color: #333;
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
}

.reset_button_container button:hover{
  background-color: #333;
  color: red;
}

.undo_button_container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: #333;
  color: white;
  /* font-size: 30px; */
}

.undo_button_container button{
  background-color: #333;
  color: white;
  font-size: 30px;
  border: none;
  cursor: pointer;
}

.undo_button_container button:hover{
  background-color: #333;
  color: yellow;
}

.Tower_Of_Hanoi {
  display: flex;
  justify-content: space-around;
}

.rod_region{
  display: flex;
  width: 10%;
  justify-content: space-around;
}

.rod {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 15px;
  height: 300px;
  /* margin-left: 10px;
  margin-right: 10px; */
  background-color: black;
  border-radius: 40px;
}

.base{
  width: 400px;
  height: 10px;
  background-color: black;
}

.disk {
  height: 20px;
  border-radius: 40px;
  margin-top: 2px;
  /* transition: top 0.5s , left 0.5s; */
}

.error_message{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  font-size: 30px;
}