body {
    background-image: url(/images/space-bg.png);
    color: white;
}
a:link {
  color: chartreuse;
  background-color: transparent;
  text-decoration: none;
}
a:visited {
  color: darkseagreen;
  background-color: transparent;
  text-decoration: none;
}
a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}
a:active {
  color: orange;
  background-color: transparent;
  text-decoration: underline;
}

.main {
  display: flex;
  align-items: center;
  margin: 2%;
  justify-content: space-between;
}
.box {
  padding: 1%;
  background: rgba(60, 60, 60, 0.3);
  outline: outset darkorchid;
}

/*Inspired by the offical tamoNOTchi animations.*/
#notchi {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 32%; 
  transform: rotate(11deg);
  animation-name: notchiAnimation;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

@keyframes notchiAnimation {
  from {transform: rotate(11deg);}
  50% {transform: rotate(-9deg);}
  to {transform: rotate(11deg);}
}


#pbanner {
  margin: 5%;
  text-align: center;
  align-items: center;
  
}
#phead{
  margin: 2%;
  text-align: center;
}


/* Classes for the three main elements of the 
   welcome page, all are contained in the main class*/
#right, #left{
  width: 200px;
  height: 900px;
}
#center {
  width: 60%;
  height: 900px;
  background: rgba(60, 60, 60, 0.3);
  outline: outset darkorchid;
}