@charset "UTF-8";

@font-face {
	font-family: 'Roboto';
	src: local('Roboto'),
		url('./fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}

* {
	box-sizing: border-box;
	color: white;
	margin: 0 auto;
	text-align: center;
	user-select: none;
}
html {
	font-size: 62.5%;
}
body {
	margin: 0;
	height: 100vh;
	line-height: 1.6;
	font-family: 'Roboto', sans-serif;
	background: linear-gradient(rgba(0, 0, 0, 0.5) 100%, rgba(0, 0, 0, 0.5) 100%),
		url('./assets/landscape.jpg') no-repeat center / cover;
}
a:hover,
a:visited,
a:active {
	color: inherit;
}
.zone {
	display: inline-block;
	width: 100px;
	height: 50px;
	border-radius: 10px;
	background-color: rgba(255, 255, 255, 0.3);
}
.zone > .title {
	text-transform: uppercase;
	color: #bdbec0;
	font-size: 14px;
	position: relative;
	bottom: 25px;
}
.zone > .content {
	position: relative;
	bottom: 25px;
}
.zone:first-of-type {
	position: relative;
	top: 40px;
}
.content {
	font-size: 32px;
}
.number {
	width: 100px;
	border-radius: 0 0 10px 10px;
}
.content.zone.number {
	top: 0;
}
button {
	display: none;
}
.number:hover,
.limit:hover {
	text-align: left;
}
.number:hover button,
.limit:hover button {
	display: block;
	position: absolute;
	right: 0;
	width: 1px;
	color: black;
}
#increment > div {
	display: inline-block;
	width: calc((100% - 10%) / 3);
}
.first {
	top: 0;
}
.second {
	bottom: 0;
}
#counter {
	font-size: 130px;
}
.button {
	width: 100px;
	font-size: 36px;
	background-color: #4bcfff;
	border-radius: 10px 10px 0 0;
}
.button:hover {
	background-color: #9ae2fc;
}
#reset {
	margin-top: 30px;
	width: 150px;
	border-radius: 20px;
}
#cliczone {
	position: absolute;
	bottom: 50px;
	right: 10%;
	left: 10%;
	width: 80%;
	height: 100px;
}
footer {
	position: absolute;
	right: 0;
	bottom: 0;
}
