@charset "UTF-8";

#game-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


.title-wrapper {
  border: 1px solid #999;
  border-radius: 10px;
  background: #3e4dd1;
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
   user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.title-wrapper .title, .image-wrapper .fade-image {
  display: inline-block;
  width: 16.2%;
}

.title-wrapper .title {
  text-align: center;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.title-wrapper .title:hover {
  background: #ed1f00;
  cursor: pointer;
}

.image-wrapper .fade-image {
  opacity: 0;
  transition: opacity .2s ease-in-out;
}

.image-wrapper .fade-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}