body{
  background-color: #e0ffaf;
  font-family: Arial, Helvetica, sans-serif;
  height: 750px;
}
h1{
    text-align: center;
  margin: 100px;
}

.button_box{
  display: flex;
  flex-wrap: wrap;
}

.button {
  text-decoration: none;
  text-align: center;
  line-height: 100px;
  font-size: 1000em;
  display: block;
  position: relative;
  background-color: green;
  border: none;
  border-radius: 100%;
  font-size: 40px;
  color: white;
  margin: auto;
  margin-top: 50px;
  width: 100px;
  height: 100px;
  /*border: 3px solid green;*/
  padding: 10px;
}

.button:hover {
  background-color: #3e8e41;
  
}

.slide-text {
  position: absolute;
  text-align: left;
  font-size: 25px;
  left: 100%; /* Starts outside the button on the right */
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
  line-height: 40px;
  color: black;
}

.button:hover .slide-text {
  left: 130px; /* Adjust this value to control where the text ends up */
  opacity: 1;
}
