html {
  background-color: black;
}
body {
  /* Style */
  background-color:#ffffff;
  background: url(/images/Black-Shaded.png),
    radial-gradient(at 80% 75%, hsla(28, 100%, 74%, 0.5), hsla(28, 100%, 74%, 0) 30%),  
    radial-gradient(at 35% 0%, hsla(189, 100%, 56%, 0.5), hsla(189, 100%, 56%, 0) 50%),  
    radial-gradient(at 6% 100%, hsla(32, 93%, 78%, 0.5), hsla(32, 93%, 78%, 0) 20%),
    linear-gradient(#8a2387, #e94057, #d8d8d8);
  background-position: right bottom, left top;
  background-blend-mode: multiply, lighten, overlay, normal;
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  height: 100vh;
  width: 100vw;
  margin: 0;
  /* transition: 0.3s ease-in-out; */

  /* Grid */
  display: grid; 
  grid-template-columns: 1fr; 
  grid-template-rows: 120px 1fr; 
  grid-column-gap: 0px;
  grid-row-gap: 0px; 
}

/* Header Content */
#Header { 
  grid-area: 1 / 1 / 2 / 2; 
}
#Header img {
  padding-left: 20px;
  padding-top: 20px;
}


/* Main Page Content */
#PageContent { 
  grid-area: 2 / 1 / 3 / 2; 
  height: 100%;
  margin: 0 0 20px 0;
}

/* Footer Content */
#Footer { 
  position: sticky;
  bottom: 0px;
  left: 0px;
  height: 40px;
  background-color: black;
  color: white;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(40, 15, 57, 0.41);
  box-shadow: 0px 0px 15px 5px rgba(40, 15, 57, 0.41);
  display: flex;
  justify-content: space-between;
  align-items: center;
} 
#Footer p {
  font-family: MA-Body;
  font-weight: lighter;
  font-size: 12px;
  padding-left: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#Footer a {
  font-family: MA-Body;
  font-weight: lighter;
  font-size: 12px;
  padding-right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #adadad;
  opacity: 0;
  transition: opacity 0.5s 1s linear;
}
#Footer:hover a {
  opacity: 0.6;
}