html {
	font-family: system-ui,sans-serif,arial;
	background: #f8f8f8;
	color: #ffffff;
}
body {
	margin: 0px;
}

::-webkit-scrollbar {
	width: 6px;
	height: 6px;
	background: #282828;
}

::-webkit-scrollbar-thumb {
	min-height: 20px;
	border: solid transparent;
	border-width: 0px;
	background-clip: content-box;
	box-shadow: inset 0 0 0 10px #4cc4ff8f;
}

::-webkit-scrollbar-thumb:hover {
	box-shadow: inset 0 0 0 10px rgba(60, 155, 198, 0.56);
}

a {
	color: #ffffff;
	text-decoration: none;
}
a:-webkit-any-link{
	color: white;
	text-decoration: none;
}

.container {
	display: flex;
	width: 100%;
	height: 100vh;
	justify-content: center;
}

.container-a{
	display: flex;
	max-width: 800px;
	height: 45%;
	align-items: center;
	background: #353535;
	width: 100%;
	margin: auto 12px;
}

.a-left{
	width: 40%;
	background: url(../images/laptop.jpg);
	height: 100%;
	align-items: end;
	background-size: cover;
	display: flex;
	justify-content: center;
}

.a-right{
	width: 60%;
	text-align: center;
	font-size: 30px;
	padding: 4px;
}

.background{
	background: linear-gradient(135deg, #282828, #0c0c0c);
}

.emoji {
	text-align: center;
	padding: 10px;
	font-size: 34px;
	transition: all ease 300ms;
	filter: invert(1);
}

.rotate {
	transform: rotate(180deg);
	transition: all ease 300ms;
	filter: grayscale(1);
}

.gelatine {
	animation: gelatine 3s infinite;
}
@keyframes gelatine {
	from, to { transform: scale(1, 1) translateX(10px); bottom: 0px;}
	20% { transform: scale(0.9, 1.1) translateX(30px); top: 100px;}
	50% { transform: scale(1.1, 0.9) translateX(80px); }
	90% { transform: scale(0.95, 1.05) translateX(10px); left: 60px }
}

.hidden {
	display: none !important;
}

.modal_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 20;
	transition: .3s all;
	cursor: url(../images/close.png) 16 16,pointer;
}

.modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 30;
	box-shadow: 0 3px 10px -.5px rgba(0, 0, 0, .2);
	animation: modal 500ms ease;
}

@keyframes modal {
	from, to { transform: translate(-50%, 20%);}
	100% { transform: translate(-50%, -50%); }
}


/*CSS GAME APP*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
}

.app {
	background-image: url(../images/zima.webp);
	background-size: cover;
	padding: 20px;
	width: 1000px;
	margin: 0 auto;
	box-shadow: 0 1px 30px 0 rgba(0,0,0,0.14), 0 0px 0px 0 rgba(0,0,0,.12), 0 0px 0px 0px rgba(0,0,0,.3);
	border-radius: 10px;
}

.app__header {
	padding: 20px;
	text-align: center;
}

.app__content {
	display: flex;
	position: relative;
	align-items: center;
	justify-content: center;
}

.app__footer {
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.input {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}

.input label {
	display: inline-block;
	max-width: 100%;
	margin-bottom: 3px;
	color: #ffffff;
	font-family: GothamPro,sans-serif;
	font-size: .9rem;
	font-weight: normal;
	line-height: 1.2rem;
}

.input input {
	display: block;
	width: 100%;
	max-height: 2.8rem;
	padding: .8rem 1rem;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: 1.4;
	color: #000;
	background: #fff none;
	border: 1px solid #999;
	border-radius: 5px;
}

.game {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #00264e;
	background: linear-gradient(1deg, #050f17e8, #031a2b);
	min-height: 360px;
	min-width: 500px;
	max-width: 500px;
	max-height: 360px;
}

.hide {
	display: none!important;
}

.btn {
	position: absolute;
	z-index: 1;
	display: inline-block;
	padding: 1rem 2.3rem;
	margin-bottom: 0;
	font-weight: normal;
	font-family: system-ui,sans-serif,arial;
	font-size: 1rem;
	line-height: 1.3rem;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	user-select: none;
	background: #2381b6;
	color: #ffffff;
	border: none;
	border-radius: 2.8rem;
	transition: transform .2s ease-in-out,box-shadow .2s ease-in-out,-webkit-transform .2s ease-in-out,-webkit-box-shadow .2s ease-in-out;
}

.btn:disabled {
	background: #ccc!important;
	border: 1px solid #ccc;
	color: #000;
	cursor: not-allowed;
}

.btn:active {
	transition: transform .1s ease-in-out,box-shadow .1s ease-in-out!important;
	transform: none!important;
	box-shadow: none!important;
}

.btn:hover {
	box-shadow: 0 6px 16px 0 rgba(0,0,0,.2);
	transform: translateY(-1px);
}
/*CSS GAME APP*/