
body {
  font-family: Lato;
  line-height: 1em;
  font-size: 20px;

}
.container {
  margin: 0 auto;
  width: 50%;
  height: auto;
}
br {
        display: block; /* makes it have a width */
        content: ""; /* clears default height */
        margin-top: 0px; /* change this to whatever height you want it */
}
h2 {
  margin: 0;
  position: relative;
  top: 30%;
  padding: 30px;
  left: 50%;
  line-height: normal;
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: lato;
  font-weight: 700;
  color: #000;
  font-size: 25px;
}
.container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -o-flexbox;
  display: -webkit-flex;
  display: flex;
  background-color: #ffffff;
  border-radius: 25px;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}
.row {
  background-color: #e5e5e5;
  -webkit-flex: 5;
  -moz-flex: 5;
  -ms-flex: 5;
  -o-flex: 5;
  flex: 7;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.square {
  width: 250px;
  background-color: #ffffff;
  -webkit-flex: 8;
  -moz-flex: 8;
  -ms-flex: 8;
  -o-flex: 8;
  flex: 8;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: column wrap;
  -moz-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  -o-flex-flow: column wrap;
  flex-flow: column wrap;
  padding: 5px;
  position: relative;
}

.square-center {
  width: 250px;
  background-color: #ffffff;
  -webkit-flex: 4;
  -moz-flex: 4;
  -ms-flex: 4;
  -o-flex: 4;
  flex: 4;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -webkit-flex-flow: column wrap;
  -moz-flex-flow: column wrap;
  -ms-flex-flow: column wrap;
  -o-flex-flow: column wrap;
  flex-flow: column wrap;
  padding: 5px;
  position: relative;
  left: 33.3%;
  border-radius: 25px;
}
.card-container {
  cursor: pointer;
  height: 250px;
  perspective: 600;
  position: relative;
  width: 250px;
  z-index: 0;
  border-radius: 20px;
}
.card {
  height: 100%;
  background-color: #98FB98;
  position: absolute;
  transform-style: preserve-3d;
  transition: all 1s ease-in-out;
  width: 100%;
 -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 10px;
}
.card-flip {
transform: rotateY(180deg);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
}
.card i{
  position: absolute;
  bottom: 8;
  right: 8;
  color: white;
  z-index: 2;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.instruction{
  font-size: 12pt;
  font-family: Lato;
  font-weight: 400;
  text-shadow: 1px 1px 2px #000;
  -webkit-backface-visibility: hidden;
backface-visibility: hidden;
}

.card .side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 6px;
  height: 250px;
  position: absolute;
  overflow: hidden;
  background-image: "images/green-01.jpeg";
  width: 100%;
  z-index: 1;
}
.card .back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background: #efefef;
  color: #000;
  height: 250px;
  line-height: 2em;
  transform: rotateY(180deg);
  z-index: 1;
  overflow-y: hidden;
}

.text {
  padding: 10px;
  margin-left: 5px;
  margin-right: 5px;
  text-align: left;
  line-height: 15px;
  font-size: 10.5pt;
}
a{
  visibility: hidden;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  left: 20px;
  transition: visibility .4s, opacity .4s;
  transition-delay: .8s;
  opacity: 0;
  color: rgba(0, 0, 0, 0);
}
.visible{
  color: blue;
  visibility: visible;
  opacity: 1;
}
a:hover{
  color: purple;
}

.square audio {
	width: 250px;
}
