﻿.logo {
	width:200px;
	height:200px;
	margin:120px auto 0px;
	border-radius:200px;
	border:5px solid ;
	box-shadow:5px 5px 5px rgba(0,0,0,0.3);
	transition:1s all;
}

.logo img {
	width:200px;
	height:200px;
	margin:0px auto 0px;
	background:#fff;
	border-radius:200px;
}

.logo:hover {
	transform:rotate(360deg);
	box-shadow:0px 0px 0px rgba(0,0,0,0.3);
}
