body{
	background: lightblue;
	text-align: center;
}

h1{
	position: relative;
    top: 12vh;
    text-align: center;
    font-size: 5vh;
	color: yellow;
	text-shadow: 0.1vh 0.1vh 0.1vh white, 
				 0.3vh 0.3vh 0.3vh red;
}

.wrapper{
	position: relative;
	top: 23vh;
	left: 42vw;
	width: 18vw;
	height: 26vh;
	color: transparent;
	display: inline-block;
	align-content: center middle;
	box-sizing: border-box;
	box-shadow: 2vw 2vh 2.6vw 2vh rgba(94, 94, 94, 1);
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}

.circle{
	position: relative;
	width: 20vw;
	height: 28vh;
	background: red;
	display: inline-block;
	align-content: center middle;
	text-align: center;
	color: white;
	cursor: pointer;
	border: 0.3vw linear transparent;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
	transition: background 1s, transform 1s 1s ease-in;
	-webkit-transition: background 1s, transform 1s 1s ease-in;
	-moz-transition: background 1s, transform 1s 1s ease-in;
	-ms-transition: background 1s, transform 1s 1s ease-in;
	-o-transition: background 1s, transform 1s 1s ease-in;
}

.circle:hover{
	background: red;
	width: 21vw;
	height: 29vh;
	border: 0.3vw dotted #999999;
	transform: rotate(360deg); /*Obrat v smeri urinega kazalca za celi krog*/
	opacity: 0.9;
	z-index: 99;
}

.trzinka{
	position: relative;
	height: 28vh;
	line-height: 28vh;
	text-align: center;
	font-size: 5vh;
	text-shadow: 0.3vh 0.3vh 0.3vh black,
	0.3vh 0.3vh 0.3vh white;
	color: white;
}