body {
  border: solid 0.1px;
  margin: 0;
  background: linear-gradient(to right, lightblue, yellow);
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  font-family: cursive;
}
.container {
  background-color: aliceblue;
  border-radius: 10px;
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 10px;
  width: 450px;
  margin: 5px;
}

.btn {
  background-color: green;
  color: aliceblue;
  padding: 10px 30px;
  font-size: 16px;
  margin-bottom: 10px;
  border-radius: 6px;
  cursor: pointer;
}
.btn:disabled {
  background-color: gray;
  cursor: not-allowed;
}
.anime-container {
  display: none;
}
.anime-img {
  height: 300px;
  width: 300px;
  border-radius: 50%;
  border: 3px solid green;
}
.anime-name {
  border: solid 0.1px;
  margin: 20px;
  background-color: green;
  color: aliceblue;
  padding: 10px;
  border-radius: 6px;
  font-size: 17px;
}
