.parent {
display: grid;
grid-template-columns: repeat(6, 1fr);
grid-template-rows: repeat(6, 1fr);
grid-gap: 10px;
padding: 10px;
}

.header {
  grid-area: 1 / 1 / 2 / 7;
  padding: 0px;
  overflow: hidden;
  }
      .header h1 {
        text-align: center;
        font-size: 100px;
        line-height: 30px;
        letter-spacing: 5px;
        text-shadow:
            -1px -1px 0 #0C044F,
            1px -1px 0 #0C044F,
            -1px 1px 0 #0C044F,
            1px 1px 0 #0C044F;
        filter:drop-shadow(10px 10px 10px #0C044F);
        margin-top: -240px;
        }
        
        .header h2 {
        font-size: 50px;
        line-height: 10px;
        letter-spacing: 5px;
        text-shadow:
            -1px -1px 0 #0C044F,
            1px -1px 0 #0C044F,
            -1px 1px 0 #0C044F,
            1px 1px 0 #0C044F;
        margin-left: 520px;
        margin-top: -40px;
        }
        
        .overlayheader img {
          width: 100%;
          height: 10%;
          margin-top: -433px;
        }
        .wizardcritter img {
          margin-bottom: -200px;
        }
  
.body {
  grid-area: 2 / 2 / 5 / 6;
  padding: 10px;
  height: 700px;
  }

.body2 {
  grid-area: 5 / 2 / 6 / 6;
  padding: 10px;
  margin-top: -200px;
  height: 475px;
  top: -200px;
  overflow: scroll;
  }
  
      .body2 p {
        text-align: center;
      }

.left {
  grid-area: 2 / 1 / 6 / 2;
  padding: 10px;
  }
      .left li {
        border-bottom: 1px solid #000025; 
        padding: 10px; 
        list-style-type: none;
        }
        
      .left li:last-child {
        border-bottom: none;
        }

.right {
  grid-area: 2 / 6 / 6 / 7;
  padding: 10px;
  }
  
      .buhten {
        text-align: center;
        }

.footer {
  grid-area: 6 / 1 / 7 / 7;
  padding: 10px;
  height: 50px;
  }
      .footer p {
        margin: -4px;
      }
  
.header,.body, .body2,.left,.right,.footer {
  background-color:#0F0969;
  border: 4px #000025 solid;
  color: #4F4896;
}




a {
  text-decoration: underline wavy;
  color: #8987B6;
}

a:visited {
  text-decoration: underline wavy;
  color: #6159AC;
}

.link {
position: relative;
transition: clip-path 275ms ease;
}
.link:hover span::before, .link:focus span::before {
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.link span {
position: relative;
display: inline-block;
}
.link span::before {
position: absolute;
content: attr(data-content);
text-decoration: underline;
clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
transition: clip-path 275ms ease;
}
span.dashed::before {
text-decoration-style: dashed;
}

