.main {
 background: linear-gradient(aliceblue, lavender);
 border-radius: 15px;
 border-style: none;
 height: 100%;
 font-size: 20px;
 padding: 10px;
 font-family: terminator;
}

body {
  text-align: center;
  background: azure;
  font-family: terminator;
}

h1 {
 font-family: terminator; 
}

@font-face {
  font-family: terminator;
  src: url(/fonts/prstartk.ttf);
}

a:link {
  color: white;
  text-decoration: none;
  background: cadetblue;
  padding: 6px;
}
a:visited {
  color: white;
  text-decoration: underline;
  background: cadetblue;
  padding: 6px;
}
a:hover {
  color: white;
  text-decoration: underline;
  background: cadetblue;
  padding: 8px;
}
a:active {
  color: aliceblue;
  text-decoration: underline;
  background: cornflowerblue;
  padding: 10px;
}