* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
.background-image{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 68vh;
  background-image: url("horimiya.jpg");
  background-size: cover;
}
.hamster {
  position: relative;
  width: 250px;
  height: 250px;
  background-color: rgba(164, 105, 167, 0.238);
  box-shadow: 0 5px 15px rgba(0, 0, 1.99);
  color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  flex-direction: column;
  text-shadow: black 1px 0px;
}
h2 {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  text-decoration: solid;
}
.btn-group {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
}
button {
  position: absolute;
  height: inherit;
  width: 70px;
  background-color: rgb(255, 255, 255, 0.2);
  color: rgba(61, 32, 66, 0.992);
  border: solid 2px black;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 15px;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0.5);
  
}
button:nth-child(1) {
  margin-left: -100px;
  margin-top: 20px;
  background-color: rgb(255, 255, 255, 0.2);
}
button:nth-child(2) {
  margin-top: 20px;
  margin-left: 100px;
  background-color: rgb(255, 255, 255, 0.2);
}
