.load {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #032830;
	z-index: 10000000;
	display: flex;
	align-items: center;
	justify-content: center;
}

.blink {
  border-radius: 50%;
  max-width: 150px;
  height: auto;
-webkit-animation: blink-2 0.6s ease-out infinite both;
				animation: blink-2 0.6s ease-out infinite both;
}

@-webkit-keyframes blink-2 { 0% { opacity: 1; } 50% { opacity: 0.2; } 100% { opacity: 1; } }
@keyframes blink-2 { 0% { opacity: 1; } 50% { opacity: 0.2; } 100% { opacity: 1; } }