body {
  align-items: center;
  background-color: rgba(197, 225, 182, 1);
  color: rgba(61, 61, 61, 1);
  display: flex;
  font-family: "Patrick Hand", cursive;
  height: 100vh;
  justify-content: center;
  margin: 0;
  user-select: none;
}

.container {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 100%;
}

header {
  text-align: center;
}

header h1,
header p {
  color: rgba(45, 62, 80, 1);
  margin: 0;
}

.tree {
  cursor: pointer;
  display: inline-block;
  position: relative;
}

.tree img {
  height: 25.3125rem;
  pointer-events: none;
  user-select: none;
}

.response {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.625rem;
  border: 2px solid rgba(74, 139, 74, 1);
  bottom: 50%;
  box-shadow: 0 0.25rem 1.25rem rgba(0, 0, 0, 0.3);
  color: rgba(45, 62, 80, 1);
  display: none;
  font-style: italic;
  left: 50%;
  margin-top: 0.3125rem;
  padding: 0.9375rem;
  position: absolute;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
}

@media (max-width: 768px) {
  .tree img {
    height: 9.375rem;
  }

  .response {
    font-size: 0.8rem;
    padding: 0.3125rem;
  }
}

.tree.clicked .response {
  display: block;
}

footer {
  text-align: center;
}

footer p {
  color: rgba(61, 61, 61, 1);
  margin: 0;
}

footer a {
  color: rgba(45, 62, 80, 1);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
