
			html { 
			  background: url(images/bg.webp) no-repeat center center fixed; 
			  -webkit-background-size: cover;
			  -moz-background-size: cover;
			  -o-background-size: cover;
			  background-size: cover;		 
			}
			
			body {
			    background-color: transparent !important;
			}
			
			.center {
			  display: flex;
			  justify-content: center;
			  align-items: center;
			}
						
			.logo {
			  margin-top: 35vh;
			  display: flex;
			  justify-content: center;
			  align-items: center;
			}
			
			.shadowfilter {
				-webkit-filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.5));
				filter: drop-shadow(12px 12px 7px rgba(0, 0, 0, 0.5));
			}
			
			img {
				margin-left: 25px;
				margin-right: 25px;
			}
			
			.zoom {
				transition: transform .2s; 
			}
			
			.zoom:hover {
			  transform: scale(1.1); 
			}