.mybox {
  border: 2px dashed #27a84d;
  width: 100px;
  height: 100px;
  transition: all 1s ease 0s;
  margin: 0 auto;
}
.mybox.myborder {
    border: 2px solid #27A84D;
    transition: 3s;
}
.hidden-content {
  text-align: center;
  font-size: 0px;
  opacity: 0;
    transition: .5s;
}
.revealed h2{
    opacity: 1;
  font-size: 74px;
    transition: .5s;
}
#correct, #incorrect {
  border: 2px solid #FFB50A;
  border-radius: 50%;
  height: 200px;
  left: 38%;
  position: absolute;
  top: 10%;
  width: 200px;
  z-index: 1000;
  background-color: rgba(255,181,10,.9);
}
.top-sign .fa {
  border-bottom: 4px solid #27a84d;
  color: #27a84d;
  display: block;
  font-size: 70px;
  margin: 0 auto;
  padding-bottom: 8px;
  text-align: center;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
}
.bottom-text p {
  color: #fff;
  font-size: 30px;
  margin-top: 20px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.2);
}
#incorrect > .top-sign .fa{
    color: red;
    border-bottom: 2px solid red;
}
.mybox * {
  line-height: .8;
}