#outside {
  z-index: 1;
  position: absolute;
  background-color: black;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: 1s;
  transform-origin: 0;
}

.open-card {
  transform: rotateY(90deg);
}

#outside-title {
  color: black;
  font-family: Courier;
  font-size: 24pt;
  font-style: bold;
  text-align: center;
  color: white;

}

#outside-pic {
  width: 300px;
  height: 300px;
}

#outside-help {
  color: black;
  font-family: Courier;
  font-size: 12pt;
  text-align: center;
  padding: 20px;
}

#inside {
  background-color: black;
  z-index: 0;
  position: absolute;
  top: 2%;
  left: 50%;
  width: 400px;
  height: 100%;
  margin-top: 0px;
  margin-left: -200px;
  text-align: center;
  

}

#inside-title {
  font-family: Courier;
  font-size: 12pt;
  text-align: center;
  color: white;
  background-color: black;

}

#inside-pic {
  width: 150px;
  height: 150px;
  background-color: black;
}

#message {
  background-color: black;
  color: black;
  font-family: Courier;
  font-size: 12pt;
  text-align: center;
}

button {
  background: silver;
}