    body {background: linear-gradient(to right , white, #61605d);}
    /*      -----------------------  ****     Header   ****   ---------------------- */

  * {
    margin: 0;
    padding: 0;
    font-family: Fantasy, copperplate;
      }

 /*                                ----   Header CSS   -----                   */

   header {

      background: linear-gradient(to left , white, #61605d);
      grid-row: 1/2;
      grid-column: 1/9;
      }

   header a {

      color: Black;
      height: 100px;
      font-size: 50px;
      text-decoration: none;
      z-index: 100;
      }

   header h1 {
      line-height: 140%;
      padding: 1rem;
      margin-bottom: 0px;
      margin-top: 20px;
      z-index: 100;
      }

  .footer {
    font-family: "Fantasy", copperplate;
    font-size: 50px;
    color: #1f1e1c;
    border-bottom: 2px solid red;
    z-index: 3;
    text-align: center;
    }

   .navbar {
       overflow: hidden;
       background-color: #333;
       color: black;
       font-family: Arial, Helvetica, sans-serif;
       padding-left: 1500px;
       }

  .navbar a:hover, .dropdown:hover .dropbtn {
      background-color: red;

      }

 /*                                ----   Body  CSS   -----                   */

    nav {
      font-weight: bold;
      grid-row: 2/3;
      grid-column: 1/-1;
      position: sticky;
      top: 0;
      background-color: #424242;
      z-index: 100;
      }

    .body-title {
       position: absolute;
       top: 250px;
       color: white;
       border-width: 1px;
       padding-left: 100px;
       font-size: 30px;
       font-family: Fantasy, copperplate;
       z-index: 100;
       }
 /*      -----------------------  ****    SnowSoft Insert    ****  ---------------------- */

 h2 {
   padding-left: 100px;
   padding-top: 200px;
   color:hsl(0,0%,30%);
   font-size: 100px;
   font-weight: bold;
   font-family: "Fantasy", copperplate;
   letter-spacing: 7px;
   cursor: pointer;
   }

 h2:hover span:nth-child(1) {margin-right: 5px;}

 h2:hover span:nth-child(1):after {content: "Soft";}

 h2:hover span:nth-child(2) {margin-left: 30px;}

 h2:hover span {
   color: hsl(0, 0%, 60%);
   text-shadow: 0 0 10px hsl(0, 0%, 100%), 0 0 20px hsl(0, 0%, 100%) 0 0 40px hsl(0, 0%, 100%);
   }

 h2 span {
   transition: .5s linear;
   }

/*                                ----   Wrapper Method   -----                   */
#wrapper {
    box-shadow: 0px 3px 3px rgba(66, 66, 66, 0.3);
    display: grid;
    grid-auto-rows: minmax(0px, auto);
    z-index: 3;
    grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 175px)) minmax(0px, 1fr);
}

main {
    padding-left: 2rem;
    padding-right: 2rem;
    grid-row: 4 / 5;
    grid-column: 2 / 8;
    background-color: #ffffff;
    z-index: 3;
}


* {box-sizing: border-box;}

nav ul{
    list-style-type: none;
}
nav ul li{display: inline;
}


nav ul {
    margin: 0px;
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
    list-style-type: none;
    z-index: 1;
}

nav ul li {width: 100%;}

nav a:hover {background-color: #ba1c21;}



/*                   -----------    Buttons   --------------------*/



 .dropbtn {
    width: 100%;
    background-color: #424242;
    font-size: 16px;
    border: none;
    font-family: "Fantasy", copperplate;
    color: white;
    opacity: .5;
          }

 .dropdown {
    position: relative;
    display: inline-block;
    font-size: 15px;
    text-decoration: none;
   z-index: 3;
    }

 .dropdown-content {
   background: white;
   text-align: left;
   display: none;
   font-family: "Fantasy", copperplate;
   position: absolute;
   min-width: 160px;
   box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
   z-index: 3;
   }

 .dropdown-content a {
   text-align: left;
   color: black;
   width: 350px;
   padding: 12px 16px;
   text-decoration: none;
   display: block;
   z-index: 3;
   }

 .dropbtn:hover {background-color: red;cursor: pointer;}

 .dropdown:hover .dropdown-content {display: block; }



/*                                     Media Queries                             */


@media only screen and (max-width: 1100px){
    .wrapper{
        grid-template-columns: minmax(0px, 1fr) repeat(6, minmax(0, 150px)) minmax(0px, 1fr);
    }
}
    ::selection{
        float: none;
        width: 100%;
        padding-right: 0px;
        }
        }

@media screen and (max-width: 600px) {
    header h1{
        background-image: none;
        text-align: center;
        z-index: 3;
        }
    nav{
        grid-row: 2 / 3;
        grid-column: 1 / 9;
        }
    }
