body {
	background: linear-gradient(95deg, #71daff, #fff);
	background-size: 400% 400%;
	animation: gradient 5s ease forwards;
	height: 100vh;
}

.bg {
  background-image: linear-gradient( 95.2deg, rgba(173,252,234,1) 26.8%, rgba(192,229,246,1) 64% );
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.logo svg {
  max-width: 80%;
  max-height: 80%;
  width: auto;
  height: auto;
}

.logo circle {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  stroke-width: 1;
  stroke: #000;
  fill: transparent;
  animation: dash 0.6s ease-out forwards;
  animation-delay: 1.2s;
}


.logo #lab {
  fill: #000;
  animation: fadein 1s ease-in forwards;
  animation: fadein 0.3s ease-in forwards;
  animation-delay: 2s;
}

.logo #drusba {
  fill: #000;
  animation: fadein 0.2s ease-in forwards;
  animation-delay: 0.2s;

}





@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 75% 25%;
	}
}
