body {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
	font-family: monospace;
}

.logo-container {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 150px;
	width: 150px;
	background-color: #fff;
    overflow: visible;
	
}
.logo-container img:hover {
	transform: scale(1.2) rotate(-6deg);
    transition: transform 0.5s ease;
}
.logo-container img {
    border-radius: 2%;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
	transform: scale(1.) rotate(8deg);
    transition: transform 0.5s ease;
}

img {
	max-width: 100%;
	height: auto;
}