#outside {
  z-index: 1;
  position: absolute;
  background-color: lightgray;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 1s;
  transform-origin: 0;
}

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

#outside-title {
  color: black;
  font-family: Helvetica Neue, Courier;
  font-size: 17pt;
  text-align: center;
}

#outside-pic {
  width: 178px;
  height: 412px;
}

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

#inside {
  z-index: 0;
  position: absolute;
  background-color: white;
  width: 100%;
  height: 100%;
  text-align: center;
}

#inside-title {
  color: blue;
  font-family: Helvetica Neue, Courier;
  font-size: 17pt;
  text-align: center;
}

#inside-pic {
  width: 499px;
  height: 664px;
}

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

button {
  background: silver;
  font-size: 20px;
}