/*George Ivanchikov
190235
20/03/23*/


.InstrustionScreenHeader
{
	text-transform: uppercase;
	background-color: black;
	-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 60px;
  text-align: center;
  margin-top: 0;
  padding-top: 200px;
}

.instructions
{
  font-size: 30px;
  text-align: center;
}

.startButton 
{
  background-color: grey;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  transition-duration: 0.4s;
  cursor: pointer;
  display: flex;
  margin: 0 auto;
}

.game
{
  display: none;
}

.popUp
{
  display: none;
  position: absolute;
  top: 30%;
  left: 30%;
  width: 45%;
  padding: 10px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.5);
  background: orange;
}

.popUpInfo
{
  text-align: left;
  font-size: 30pt;
  width: 90%;
  margin: auto;
}

.playerName
{
  display: inline;
  text-align: center;  
  font-size: 30px;
  font-weight: bold;
}

.playerNameText
{
  display: block;
  margin: auto;
  text-align: center;
  width: 90%;
}

input[type=text] 
{
  width: 20%;
  padding: 12px 20px;
  margin-bottom: 20px;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 20pt;
}

.selectButtonsContainer, .startButtonContainer
{
  display: none;
  justify-content: center;
}

.startButtonContainer, .inputContainer
{
  display: flex;
  justify-content: center;
}



.selectButton 
{
  background-color: purple;
  width: 150px;
  margin: 10px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: whitesmoke;
}

.characterSelect
{
  border: thick solid red;
  width: 620px;
  height: 30px;
  margin: 10px;
  text-align: center;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.img 
{
  height: 600px;
  max-width: 100%;
  position: relative;
  animation: cartoonAnimation 10s infinite;
  animation-play-state: paused;
  animation-timing-function: linear;
}

@keyframes cartoonAnimation 
{
  /* from {bottom: var(--keyFrameFromValue);}
  to {bottom: var(--keyFrameToValue);} */
  from {bottom: -40px}
  to {bottom: 610px}
}

.triesText
{
  font-size: 30pt;
  width: 90%;
  text-align: center;
  margin: auto;
} 

.triesBox
{
  height: 100px;
  width: 200px;
  background-color: orange;
  border: thick solid red;
  padding-top: 10px;
  margin: auto;
}

.tries 
{
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin: 20px;
}

.lapsed
{
  text-align: center;
  font-size: 20pt;
  padding: 5px;
}

.triesBoxText
{
  font-size: 60pt;
  color: red;
  text-align: center;
  margin: auto;
  text-shadow: 2px 2px 4px #000000;
}

.hintButton 
{
  background-color: gold;
  width: 300px;
  margin: 10px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: black;
}

.pauseButton 
{
  background-color: orange;
  width: 150px;
  margin: 10px;
  text-align: center;
  line-height: 50px;
  font-size: 30px;
  color: black;
}