
*{
	margin:0;
	padding: 0;
	box-sizing: border-box;
}
.background{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	background-image: url("./123.jpg");
	background-size: cover;
	z-index: -1;
	filter: blur(5px);
}
h1{
    margin-bottom: 10px;
    text-decoration: underline;
}
h1:hover{
	color: #fff;

}
.counter-container {
	background-color:#ff0000;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin:  auto;
	margin-top: 100px;
    box-shadow: 0px 5px 10px rgba(44, 33, 33, 0.5);
    padding: 10px;
}
button{
    padding: 10px 20px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 10px;
    width: 80px;
	font-size: 15px;
}
.btn-cotainer{
	margin-bottom: 20px;
}

 #count{
	font-size: 50px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px  10px rgb(0,0,0,0.2);
 }
 #count:hover{
	color: #000;
 }
#reset{
    background-color: #fff;
    margin-bottom: 20px;

}
#reset:hover{
    background-color: #000;
	color: #fff;
}
.btn:hover{
    background-color: #000;
	color: #fff;
}