  .wrapper{
      display: grid;
      width:100%;
      gap: 20px;
    }

    .rightWrapper{
      display: grid;
      gap: 20px;
    }
    
    .header{
      width:100%;
      background-color:rgb(88, 47, 109);
      display: grid;
      grid-row: 1;
      grid-column: 1 / 5;
      grid-template-columns: 25% 50% 25%;
      color:white;
      border: 5px solid transparent;
      border-style:groove ;
      border-color:white;
      /*border-color: #bce746;*/
      border-width: 5px;
      justify-content:center;
      text-align:center;
      background-image:url(foliage.jpg);
    }

    .header h1{
      text-shadow: 0px 0px 25px white;
      letter-spacing: 20px;
      font-size: 50px;
      text-align:center;
      font-family: "caudex";
      background-color:rgba(0, 0, 0, 0.776);
      border-style:double;
    }

    .header img{
      text-align:center;
      margin-top:5vh;

    }

    .mainBody{
      position:relative;
      width:98%;
      display:grid;
      grid-row: 2 / 5;
      grid-column: 1 / 5;
      grid-template-columns: 25% 50% 25%;
      color:white;
      gap: 20px;
    }

    .mainOrb{
      height: 100vh;
    }
    .mainOrb img{
      object-fit:fill;
      width:99%; 
      height:100%;
      border-style:groove;
      border-color: white;
      border-width: 5px;
    }

    .rack{
      display:grid;
      border-style:groove;
      border-color: white;
      background-color:rgb(93, 58, 127);
      border-width: 5px;
      object-fit:contain;
      justify-items: center;
    }

    .rack h2{
      text-align:center;
      margin: 0%;
    }

    .rack img{
      object-fit:contain;
      max-width:100%;
      height:auto;
    }

    .dialogueBox{
      background-color: black;
      border-style:solid;
      border-color: white;
      font-family: 'Courier New', Courier, 'Courier New', Courier, monospace;
      width:20%;
    }

    .dialogueBox h2{
      margin: 5%;
    }

    .dialogueBox h3{
      margin: 5%;
    }

    .press {
      font-family: 'Courier New', Courier, 'Courier New', Courier, monospace;
      font-weight: bolder;
    }
    .press:link{
      color: #bce746;
    }

    .press:visited{
      color: #c69dda;
    }

    .press:hover{
      color: #c5da8a;
    }
