@import "/inc/blogs.css";  /* styles common across blog articles */

/* part 1 - intro */
#hole span {
  top: 150px;  left: 140px;
  color: white;  background-color: transparent;
  border: 0;
  text-align: center;
  font: bold 24pt Georgia, serif;
  text-shadow: 0 0 20px #FFF, 0 0 20px #CCC;
  opacity: 0;
  transition: opacity 0s;
}
#hole:hover span {
  opacity: 0.25;
  transition: opacity 10s linear 10s;
}

#hint { text-align: center; }
#hintBtn { padding: 0.5em 2em; }
#hintTxt {
  display: inline-block;
  margin: 0.5em auto;  padding: 0.5em 1em;
  color: white;  background-color: black;
  min-width: 2em;
  text-align: center;
  line-height: 1.5em;
  border: 4px solid gray;
  transform: scaleY(0);  transform-origin: top;
  opacity: 0;
  transition: transform 0.5s linear, opacity 1s;
}
#hintTxt a { color: skyblue; }
#hintTxt a:hover { color: deepskyblue; }
#hintTxt img { display: inline-block; }
