

body {
	height: 100vh;
	display: flex;
	place-items: center;
	background: rgb(0,19,50);
	background: -moz-linear-gradient(0deg, rgba(0,19,50,1) 0%, rgba(0,53,81,1) 50%, rgba(0,165,200,1) 100%);
	background: -webkit-linear-gradient(0deg, rgba(0,19,50,1) 0%, rgba(0,53,81,1) 50%, rgba(0,165,200,1) 100%);
	background: linear-gradient(0deg, rgba(0,19,50,1) 0%, rgba(0,53,81,1) 50%, rgba(0,165,200,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001332",endColorstr="#00a5c8",GradientType=1); 
  text-align: center;

}

.logo {

  margin: 0 auto;
}
.toto {
	width: 500px;
	transition: transform .5s;
	filter: drop-shadow(0 0 1.2rem #9EC37B);
}

.toto:hover {
-ms-transform: scale(1.3); /* IE 9 */
-webkit-transform: scale(1.3); /* Safari 3-8 */
transform: scale(1.3);
filter: drop-shadow(0 0 2.5rem crimson);
}
.splash {
	display: inline-grid;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	width: 100%;
	height: 80%;
	background-image: url(img/splash05.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
}
.splash div {
	width: 100%;
	height: 100%;
}