/* this is the styling for the registration site of the website */
		
body {
  background:url(images/back18.png);
  background-position: center;
  background-size: 200% 200%;
  animation: BackgroundGradient 20s ease infinite;
  padding:10px;
}

h1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: Open Sans, sans-serif;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  font-size: 2em;
  padding: 5px;
}
@keyframes BackgroundGradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}


 .return {
    max-width:500px;
    padding:10px;
    margin:auto;
    text-align:center;
    background:#fff;
    border-radius:10px;
    border-right:10px solid #000;
    border-left:10px solid #000;
}
.return a {
    color:#000010;
    text-decoration:none;
    font-family:bahnschrift;
    font-weight:bolder;
    font-size:20px;
}
.return a:hover {
    transition:0.5s ease;
    color:red;
}