@font-face {
  font-family: standardfont;
  src: url(Zygoth.ttf);
}

* {
  box-sizing: border-box;
  margin: 8px 8px 8px 8px;
  padding: 4px 4px 4px 4px;
  text-decoration: none;
  font-family: standardfont;
  color: rgba(0,0,255,1);
  background: linear-gradient(to bottom right, rgba(0,255,0,0.5), rgba(0,0,255,0.5));
  border: 0px solid rgba(0,0,0,1);
  border-radius: 20px;
  box-shadow: 0px 0px 8px rgba(255,0,0,0.5);
}

html {
  background-image: url(cbackground.png);
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
}

h1 {
  font-size: 30px;
}

h2 {
  font-size: 24px;
}

p {
  font-size: 18px;
}

input {
  font-size: 21px;
}

input:hover {
  background: linear-gradient(to top left, rgba(255,255,0,1), rgba(255,0,255,1));
  color: rgba(255,0,0,1);
  box-shadow: 0px 0px 5px rgba(255,0,0,1);
}