* {
  font-family: arial;
  text-align: center;
  color: #fff;
  margin: 0;
}

body {
  background: #333;
}

hr {
  border: 1px solid #555;
}

#game_title {
  background-image: linear-gradient(to left, #fff 100%, #f22 100%);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -moz-background-clip: text;
}

h1 {
  font-size: 2em;
  margin: 10px;
  text-transform: uppercase;
}

#info {
  line-height: 25px;
}


.smallbutton {
  height: 35px;
  background: transparent;
  cursor: pointer;
  border: none;
  position: relative;
  display: inline-block;
}

.smallbutton:hover,
.smallbutton:hover span {
  color: #aaa;
}

svg {
  top: 0;
  display: inline-block;
  height: 30px;
}

svg:hover {
  fill: #aaa;
}

#header {
  height: 45px;
}

#messages {
  width: 100%;
  height: 100%;
}

.material-icons {
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 30px;
  font-weight: 600;
}

#sharebutton {
  width: 100px;
  height: 40px;
  background: #555;
  border-radius: 6px;
  margin: 2px;
  border: 0px;
}

.absleft {
  position: absolute;
  float: left;
  top: 0;
  left: 0;
}

.absleft a {
  text-decoration: none;
}

.absright {
  position: absolute;
  float: right;
  top: 0;
  right: 0;
}

.center {
  position: relative;
  margin: 0 auto;
  left: 0;
  right: 0;
}

.flex {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5;
  /*   pointer-events: none; */
}

.abscenter {
  position: absolute;
  inset: 0;
  margin: auto auto;
}

#end,
#about {
  background: #444;
  border-radius: 6px;
  padding: 40px;
  position: relative;
  transform-style: flat;
  perspective: 1000;
}

#end {
  display: none;
}

#about {
  width: auto;
  display: none;
}

#clue0 {
  font-weight: bold;
  font-size: 24px;
  opacity: 0;
}

#clue2 {
  font-style: italic;
  font-size: 20px;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
}

#wrapper {
  width: 800px;
  transform-style: flat;
  perspective: 1000;
}

@media only screen and (max-width: 800px) {
  #wrapper {
    width: 100%;
  }
}

#cluewrap {
  padding-bottom: 60px;
}

.clue {
  opacity: 0;
  transition: color 0.5s, opacity 1s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  color: #fff;
  text-align: left;
  font-family: Georgia, serif;
}

#result {
  position: fixed;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
  overflow-y: auto;
  height: 40%;
  z-index: 3;
  border: 2px solid #ccc;
  background: #222;
  padding: 3px 3px 3px 3px;
  bottom: 60px;
  display: none;
}

#result ul {
  list-style-type: none;
  padding: 10px 0px 10px 0px;
}

#result li,
#about li {
  padding: 5px 0;
  margin-left: 5px;
  margin-right: 5px;
  line-height: 25px;
}

#result ul li:hover {
  background: #333;
}

#search {
  z-index: 1;
  float: left;
  position: fixed;
  bottom: 5px;
  font-size: 20px;
}

#q {
  border: 3px solid black;
  border-radius: 0%;
  display: flex;
  float: left;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: inherit;
  text-align: left;
  width: 250px;
  color: #888;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#searchbtn {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-family: "Material Icons";
  border: 3px solid black;
  color: #000;
  background-color: #ddd;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  width: 35px;
  float: left;
  display: flex;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

#gamedata {
  display: none;
}