* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}
body {
    background: #eff7e1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.container {
    position: relative;
    max-width: 628px;
    padding: 20px;
}
.container .letters-container {
    width: 100%;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px;
    margin: 20px 0;
}
.container .letters-container .letter {
    padding: 10px;
    background: #f8dc81;
    border: 1px solid #bfc6b4;
    border-radius: 8px;
    margin: 5px;
    display: inline-block;
    user-select: none;
    cursor: pointer;
    box-shadow: -2px 4px 0px #bfc6b4;
    color: #214151;
    font-size: 14px;
    outline: none;
}
.container .letters-container .letter:active {
    transform: translate(-2px,4px);
    box-shadow: none;
}
.container .answerArrayBox {
    text-align: center;
    font-size: 20px;
    padding: 10px;
    color: #214151;
}
.container .attempts {
    font-size: 20px;
    color: #888;
    position: relative;
    padding: 0 10px;
    position: absolute;
    top: 10px;
    right: 20px;
    border-left: 1px solid #ccc;
}
.container .hintBox {
    font-size: 20px;
    color: #888;
    position: relative;
    padding: 10px;
    position: absolute;
    top: 0px;
    left: 20px;
}
.container .attempts > b {
    color: #f8dc81
}
.container .statusScreen {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container .statusScreen .winLose {
    color: #fff;
    text-align: center;
    user-select: none;
    font-size: 1.5em;
    padding: 20px;
    width: 60%;
    background: #000;
    opacity: 0.6;
    border-radius: 60px;
    box-shadow: 0 0 0 5px rgba(0,0,0,0.5);
}
.container .skipButton {
    bottom: 55px;
    right: 20px;
    position: absolute;
    color: #888;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
}
.container .skipButton:active {
    color: #f8dc81;
}
.gameVersion {
    color: #ccc;
    font-size: 1em;
    padding: 10px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 9;
}
.copyRight {
    color: #888;
    font-size: 12px;
    position: absolute;
    z-index: 9;
    bottom: 0;
    left: 0;
    padding: 6px;
}
.container .skipContainer {
    position: absolute;
    bottom: 55px;
}
.container .skipContainer .skipKeys {
    color: #888;
}
.container .skipContainer i {
    color: #ff8e71;
}
.aboutGameButton {
    color: #888;
    border: 2px solid #888;
    padding: 5px;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 20px;
    user-select: none;
    transition: .3s;
    z-index: 9;
}
.aboutGameButton:hover {
    cursor: pointer;
    color: #fff;
    background: #888;
}
.aboutGameButton i {
    padding: 0 5px;
    font-size: 20px;
}
.gameInfo {
    width: 640px;
    height: 40%;
    background: #eff7e1;
    position: absolute;
    padding: 20px;
    box-shadow: 0 0 0 10px rgba(204, 204, 204, 0.6);
    color: #888;
    text-align: justify;
    font-size: 16px;
    font-weight: 600;
    display: none;
    overflow-y: auto;
    z-index: 8;
}
.gameInfo ul li {
    color: #ff8e71;
}
/* Preloader */
.preload-screen {
    z-index: 9999;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #EFF7E1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader {
	width: 100px;
	height: 50px;
	position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.preloader .preloader-line {
	width: 2px;
	height: 10px;
	background: #888;
	display: inline-block;
	margin: 0 3px;
}

.preloader .preloader-line {
	animation: lin 1s linear infinite;
}
@keyframes lin {
  0%, 40%, 100% { 
    height: 10px;
  }  20% { 
    height: 20px;
  }
}
.preloader .preloader-line:nth-child(1) {
	animation-delay: 0.1s;
}
.preloader .preloader-line:nth-child(2) {
	animation-delay: 0.2s;
}
.preloader .preloader-line:nth-child(3) {
	animation-delay: 0.3s;
}
.preloader .preloader-line:nth-child(4) {
	animation-delay: 0.4s;
}
.preloader .preloader-line:nth-child(5) {
	animation-delay: 0.5s;
}


.attention {
    color: red;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 9999;
    font-weight: 600;
}

::selection {
    background: #f8dc81;
    color: #888;
}





@media(max-width: 1060px) {
    .gameInfo {
        width: 540px;
    }
}
@media(max-width: 840px) {
    .gameInfo {
        width: 440px;
    }
}
@media(max-width: 720px) {
    .aboutGameButton {
        top: 10px;
        right: 10px;
    }
}
@media(max-width: 640px) {
    .container {
        max-width: 505px;
    }
    .letter {
        font-size: 14px;
    }
    .container .statusScreen .winLose {
        font-size: 1.5em;
    }
    .gameInfo {
        width: 340px;
        font-size: 14px;
    }
    .aboutGameButton i {
        font-size: 16px;
    }
}
@media(max-width: 520px) {
    .container {
        max-width: 390px;
    }
    .container .letters-container {
        text-align: center;
    }
    .container .statusScreen .winLose {
        font-size: 1.3em;
    }
    .container .hintBox {
        font-size: 18px;
        top: 5px;
    }
    .container .skipButton {
        font-size: 14px;
        bottom: 60px;
    }
    .container .attempts {
        font-size: 18px;
        top: 15px;
    }
    .gameVersion {
        display: none;
    }
    .copyRight {
        font-size: 10px;
    }
    .gameInfo {
        width: 240px;
        height: 50%;
    }
}
@media(max-width: 420px) {
    .container {
        max-width: 376px;
    }
    .container .letters-container .letter {
        font-size: 12px;
    }
    .container .statusScreen .winLose {
        font-size: 1.1em;
    }
    .container .skipButton {
        font-size: 12px;
        bottom: 65px;
    }
    .container .attempts {
        font-size: 16px;
        top: 18px;
    }
    .gameInfo {
        width: 220px;
        height: 50%;
    }
    .aboutGameButton {
        top: 5px;
        right: 5px;
        padding: 5px;
    }
    .aboutGameButton i {
        font-size: 14px;
    }
    .container .hintBox {
        font-size: 16px;
        top: 8px;
    }
}
@media(max-width: 380px) {
    .container {
        max-width: 338px;
    }
}