
    .image-container {
      position: relative;
      display: inline-block;
	  margin-bottom: 20px;
      cursor: pointer;
    }

    .image-container img {
      width: 95%;
      border: 0px solid #ccc;
      border-radius: 10px;
      transition: filter 0.2s;
    }

    .label {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
	  font-family: gogh,"gogh extra bold",goghextra_bold;
      font-size: 50px;
      font-weight: bold;
      color: white;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      display: none;
    }

	.hint-bar {
  	 position: absolute;
  	 bottom: 0.5%;
  	 left: 2.5%;
  	 width: 91%;
  	 background: rgba(0, 0, 0, 0.6);
  	 color: white;
  	 font-size: 18px;
  	 padding: 10px;
  	 text-align: center;
  	 display: block;
  	 border-bottom-left-radius: 12px;
  	 border-bottom-right-radius: 12px;
	}


    .show-answer img {
      filter: grayscale(100%);
    }

.show-answer .hint-bar {
  display: none;
}

    .show-answer .label {
      display: block;
    }

 
    .buttons {
      margin-top: 0px;
    }

    button {
      padding: 12px 20px;
      margin: 10px;
      font-size: 16px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
    }

    #status {
      margin-top: 20px;
      font-weight: bold;
    }

    #doneScreen {
      display: none;
      font-size: 28px;
      margin-top: 40px;
    }