
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;
	color: #FFFFFF;
}

/* 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;
	text-align: center;
	color: #FFFFFF;
	font-family: "lato", sans-serif;
	font-size:12px;
	border: 1px solid #00FFFF;
	height: 650px;
    width: 650px;
  }

  .boxfitness{
	position: absolute;
    z-index: 0;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: rgb(0, 0, 0);
	border-radius: 30px;
	text-align: center;
	color: #FFFFFF;
	font-family: "lato", sans-serif;
	font-size:12px;
	border: 1px solid #00FFFF;
	height: 650px;
    width: 650px;
    background-image: url('performance_black.png');
    background-size: 650px 650px;
	background-repeat: no-repeat;
  }



  .credit-note {
	position: absolute;
	top: calc(50% + 325px); /* 50% + half of box height (650px / 2) + extra padding */
	left: 50%;
	transform: translateX(-50%);
	color: #CCCCCC;
	font-family: "lato", sans-serif;
	font-size: 16px;
  }

  .flux-header {
	background-color: black;
	width: 100%;
	padding: 10px 0;
    border-bottom: 1px solid #00FFFF;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    z-index: 2;
  }

  .studentpic {
	border-radius: 40px; 
    width:165px; 
    height: 263px;
  }


  
  