body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#outside {
  z-index: 1;
  position: absolute;
  background-color: lightblue;
  width: 60%;
  height: 80%;
  text-align: center;
  transition: 1s;
  transform-origin: 0;
  border:10px solid darkorchid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.open-card {
  transform: rotateY(90deg);
}

#outside-title {
  color: purple;
  font-family: Arial;
  font-size: 32pt;
  text-align: center;
}

#outside-pic {
  /* width: 300px; */
  height: 400px;
}

#outside-help {
  color: black;
  font-family: Courier;
  font-size: 12pt;
  text-align: center;
  padding: 20px;
}

#inside {
  z-index: 0;
  position: absolute;
  background-color: rgb(253, 224, 255);
  width: 60%;
  height: 80%;
  text-align: center;
  border:10px solid darkorchid;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#inside-title {
  color: purple;
  font-family: Arial;
  font-size: 32pt;
  text-align: center;
}

#inside-pic {
  /*width: 50px;*/
  height: 150px;
}

#message {
  color: purple;
  font-family: Arial;
  font-size: 12pt;
  text-align: center;
}

button {
  background: silver;
}