body {
  font-family: system-ui;
  background: #2A7B9B;
  animation: fadeIn 1s ease 0s 1 alternate none;
  background: linear-gradient(90deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 47%, rgba(128, 205, 119, 1) 61%, rgba(237, 221, 83, 1) 100%);
}

.blur {
  width: 100%;
  height: 100%;
  background: transparent;
  border: 1px solid gray:
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}

	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
