.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

body{
  font-family: "roboto slab", helvetica, arial, sans serif;
  background:#f9f9f9;
}

h2{
	margin: 60px 0px 50px 0px;
	font-size: 30px;
	font-weight: 900;
}

#app-container{
	position: relative;
	margin: 0 auto;
	width: max-content;
	text-align: center;
}

#result-container-wrong{
	display: none;
	text-align:center;
	font-size: 12px;
	margin-top: 25px;
}

#result-container-correct{
	display: none;
	text-align:center;
	font-size: 12px;
	margin-top: 25px;
}


.todays-word{
	
	font-weight: 900;
	text-transform: uppercase;
	font-size: 22px;
}

.congrats{
	font-weight: bolder;
	text-transform: uppercase;
	font-size: 22px;
}

.new-game{
	font-family: helvetica, arial, sans serif;
	padding: 6px 12px;
	margin-top: 15px;
	border-width: 1px;
	border-style: solid;
	border-color: rgba(0,0,0, 0.2);
	border-radius: 3px;
	background: #eee;
	box-shadow: none;
	margin-top: 30px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: uppercase;
    font-weight: bolder;
}

.input > input{
	width: 45px;
	height: 45px;
	float: left;
	margin-right: 5px;
	margin-bottom: 5px;
	border: 1px solid rgba(0,0,0, 0.2);
	border-radius: 3px;
	text-align:center;
	font-weight: bold;
	line-height: 30px;
	font-size: 27px;
	text-transform: uppercase;
	-webkit-appearance: none;
	caret-color: transparent;
	outline: none;
	box-sizing: border-box;
	padding:0px;


}

.input > input:last-child{
	margin-right: 0px;
	margin-bottom: 0px;
}

.input > input:focus{
	/*box-shadow: 0px 1px 2px rgba(0,0,0, 0.4);
	background-color: #ddd;*/
/*				-webkit-text-fill-color: #efefef;*/
	border: 2px solid rgba(0,0,0, 0.5);
}

input.color_0{
	background: #999;
	color: #fff;
}

input.color_1{
	background: #DB9D29;
	color: #fff;
}

input.color_2{
	background: #179C19;
	color: #fff;
}

.input > input[type="submit"]{
	width: 100px;
	font-size: 14px;
}

.input > input[disabled="disabled"],
input:disabled{
	
}

.input > input[disabled="disabled"][ type="submit"],
.input > input[disabled][ type="submit"]{
	display: none;
}

.input > input[disabled=""][ type="submit"]{
	display: block;
}

.input.invalid {
    //outline-color: red;
    /* also need animation and -moz-animation */
    -webkit-animation: shake .5s linear;
}
/* also need keyframes and -moz-keyframes */
 @-webkit-keyframes shake {
    8%, 41% {
        -webkit-transform: translateX(-10px);
    }
    25%, 58% {
        -webkit-transform: translateX(10px);
    }
    75% {
        -webkit-transform: translateX(-5px);
    }
    92% {
        -webkit-transform: translateX(5px);
    }
    0%, 100% {
        -webkit-transform: translateX(0);
    }
}




















