@import url(https://fonts.googleapis.com/css?family=Londrina+Solid|Nunito:400,300);
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  background: #323232;
}

a {
  color: #53BDFF;
  text-decoration: none;
  font-size: 14px;
}
a:hover {
  color: #86d1ff;
}

.hangman {
/*  font-family: "Londrina Solid", cursive;*/
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #53BDFF;
  font-weight: 600;
}

p {
  margin-bottom: 20px;
  color: #555555;
  line-height: 1.3;
}

@keyframes letteranim {
  50% {
    transform: translateY(-5px) scale(1.05);
  }
}
.letter {
  display: inline-block;
  color: transparent;
  border-bottom: 5px solid #53BDFF;
  margin: 0 10px;
/*  font-size: 50px;*/
  padding: 10px;
  transition: .5s;
  text-transform: uppercase;
}

.word {
  display: block;
 /* white-space: nowrap;*/
 padding-left: 0px;
}

.correct {
    color: #009933;
    text-shadow: 1px 1px 1px #757575;
    animation: letteranim .3s ease;
}

.guessForm {
  margin: 20px auto 0;
}
.guessForm input, .guessForm .guessButton {
  font-family: "Londrina Solid", cursive;
}
.guessForm input[type="text"] {
	outline: none;
	padding: 10px;
	font-size: 30px;
	margin-bottom: 20px;
	margin-right: 5px;
	border: 1px solid #aaa;
	color: gray;
	text-transform: lowercase;  
}
.guessForm .guessButton {
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  background: #53BDFF;
  color: white;
  transition: .3s;
  margin: 10px 0;
  text-shadow: 1px 2px 0 #20a9ff;
}
.guessForm .guessButton:hover {
  background: #20a9ff;
}

.wrongLetters {
  font-size: 20px;
}
.wrongLetters p {
  margin-bottom: 10px;
}
.wrongLetters li {
  display: inline-block;
  font-size: 12px;
  background: #ff4d4d;
  text-shadow: 1px 2px 0 red;
  padding: 10px;
  color: white;
  text-transform: uppercase;
  margin-right: 10px;
  animation: letteranim .3s ease;
}

.message {
  display: none;
  padding: 20px;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  /*   height: 100%; */
      background: rgb(255 255 255 / 85%);
  z-index: 123;
}
.message h1 {
    display: none;
    color: #ffffff !important;
    text-shadow: 0px 0px 1px #202020;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 18%;
    margin-bottom: 25%;
    background: #1185d77a;
    padding: 25px;
    border-radius: 5px;
	margin-left: 15%;
    margin-right: 15%;
    height: 185px;
    padding-top: 10%;
}
.message .highlight {
    color: #fdfdfd;
    font-size: 120%;
    text-transform: uppercase;
    background-color: transparent!important;
}
.message .text {
  color: #000;
  font-size: 18px;
  display: none;
}
.message .text p {
  color: white;
}
.message .text .highlight {
  font-size: 40px;
}
.message .muted {
  margin: 20px auto;
  color: #86d1ff;
}

.button {
  display: none;
  margin: 10px 0;
  border: none;
  font-size: 30px;
  padding: 10px 20px;
  cursor: pointer;
  background: #34cd39;
  color: white;
  transition: .3s;
/*  text-shadow: 1px 2px 0 #2EB933;*/
  font-family: "Londrina Solid", cursive;
}
.button:hover {
  background: #71dc75;
}

@media screen and (max-width:900px) {
	
.word {
    display: block;
    padding-left: 0px;
}
}