
html {
    overflow: hidden;
  }

  /* body {background-image: linear-gradient(#d9e8f2, #FFFFFF);} */

  body {
    margin: 0;
    overflow: hidden;
    background-color: black;
    height: 100vh;
    width: 100vw;
    position: relative;
	display: flex; 
	justify-content: center; 
	align-items: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;


}

/* Base Blob Style */
.blob {
    position: absolute;
    width: 400px;
    height: 400px;
    filter: blur(67px);
}

.blue {
    background: radial-gradient(circle, rgba(0, 100, 255, 0.8), rgba(0, 0, 0, 0));
    animation: pulseback 20s infinite ease-in-out alternate, moveBlue 20s infinite ease-in-out;
    top: 150px;
    left: 100px;
}
.red {
    background: radial-gradient(circle, rgba(255, 0, 0, 0.7), rgba(0, 0, 0, 0));
    animation: pulseback 20s infinite ease-in-out alternate, moveRed 20s infinite ease-in-out;
    bottom: -150px;
    right: -150px;
    z-index: -1;
}
@keyframes pulseback {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(2);
        opacity: 0.9;
    }
}
@keyframes moveBlue {
    0% {
        top: 150px;

    }
    50% {
        top: 70vh;
    }
    100% {
        top: 150px;
    }
}
@keyframes moveRed {
    0% {
        bottom: -150px;
    }
    50% {
        bottom: 70vh;
    }
    100% {
        bottom: -150px;
    }
}


.box{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgb(0, 0, 0);
	border-radius: 30px;
	padding:60px 100px;
	text-align: center;
	color: #FFFFFF;
	font-family: "lato", sans-serif;
	font-size:12px;
	border: 1px solid #00FFFF;
  }