body{
	margin: 0;
	padding: 0;
	background-color: #333;
	position: relative;
}
.container{
	font-family: 'Roboto Condense', sans-serif;
	height: 100vh;
	width: 100vw;

	margin: 0 auto;
	

}
.buttons {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	cursor: pointer;

}

.buttons .button{
	width: 260px;
	position: relative;
	border: 1px solid #fff;
	padding: 20px;
	margin: 10px;
	border-radius: 20px;
	box-shadow: 0 0 5px 5px rgba(0,0,0,0.5);
	transition: all .5s ease-in-out;
}

.lesenka:hover:before, .timer:hover:before{
	display: none;
}


.nolink{
	text-decoration: none;
}
.lesenka{
	background: url('btn1.jpg') ;
	background-size: cover;
	background-position: center;

}
.timer{
	background: url('btn2.png');
	background-size: cover;
	background-position: center;
}
.lesenka::before, .timer::before{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top:0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0,0,0,0.3);
	border-radius: 20px;
	transition: all 0.3s ease-in-out;
}
.thanks {
	background-color: #b17214;
	text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.20), 0px 0px 2px #000;
}
.thanks:hover{
	background-color: #ee9816;
}
.button__name{
	font-size: 1.8rem;
	text-shadow: 1px 2px 3px #000;
	color:#fff;
	transition: all .5s ease-in-out;
}
.button__description{
	text-shadow: 1px 2px 3px #000;
	
	color:#fff;
}