body {
  font-family: Arial, sans-serif;
  background-color: #030a1b;
  margin: 0;
  padding: 0;
  position: relative;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
  gap: 20px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  font-weight: bold;
}

.box {
  background-color: #cccccc;
  border: 1px solid #cccccc;
  border-radius: 20px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  padding: 10px;
  width: 150px;
  height: 20px;
  color: #333;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.5s;
}

img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.animal-name {
  font-size: 18px;
  font-weight: bold;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.modal-button {
  background-color: #4caf50;
  border: none;
  color: white;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 20px 2px;
  cursor: pointer;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: -3%;
}

.btn {
  text-align: center;
  border-radius: 10px;
  background-color: #ff0057;
  border: none;
  width: 150px;
  height: 50px;
  margin: 5px;
}

.btn a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: auto;
  line-height: 50px;
}
