#content{
  position: relative;
  background-color: transparent; 
}

#content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-color: white;
}

#content::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .5;

  background-size:     cover;                        
  background-repeat:   no-repeat;
  background-position: center center;              
}

#exercise {
  min-height: 900px; /* background image height */
}

#exercise-frame {
  width: 900px;
}

#playground, #finalBoard {
  text-align: center;
}

#exercise span{ 
  border-radius: 4px;
  padding-left:4px;
  padding-right:4px;
}

#exercise .solved{
  color:red;
  border-radius: 0px;
  padding-left:0px;
  padding-right:0px;  
}

#exercise #joke{
  text-align: left;
  border-radius:4px;
  cursor: crosshair;
  font-size: 24px;
  line-height: 130%;  
  padding: 10px;
  margin:20px 0px;  
  background-color: white;
  box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.2);
}

#exercise .ammo{
  width:25px;
}

#exercise .target{
  width:70px;
}

#exercise .disabled{
  background-color: gray;
  color:white;
}

#exercise #explanation{
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  margin:10px;
  margin-top: 20px;
  border-radius: 3px;
  padding: 20px;
  background-color: white;
  display:none;
  box-shadow: 0px 0px 32px 0px rgba(0,0,0,0.1);
}

#exercise #explanation.whiteScreen{
  box-shadow: 0px 0px 32px 0px rgba(0,0,0,0);
}

/********************** WHITE SCREEN *****************************/
#exercise.whiteScreen{ 
  padding: 0px 10px;
}

#exercise.whiteScreen #joke{ 
  box-shadow: 0px 0px 32px 0px rgba(0,0,0,0); 
}

/********************** MOBILE SCREEN *****************************/
@media screen and (max-width: 550px) {
  #exercise #sentence{
    padding: 10px;
    margin:30px 20px;    
    font-size: 20px;
  }
}
