a {
    color: inherit;
  }
  
  .menu-item,
  .menu-open-button,
  .menu-open-button2,
  .menu-open-button3 {
    background: #333;
    border-radius: 100%;
    width: 90px;
    height: 90px;
    position: absolute;
    color: #FFFFFF;
    text-align: center;
    line-height: 90px;
    font-size: 1em;
    font-weight: bold;
    transform: translate3d(0, 0, 0);
    transition: transform ease-out 200ms;
  }
  
  .menu-open,
  .menu-open2,
  .menu-open3 {
    display: none;
  }
  
  /* Lines */
  .lines, .lines2, .lines3 {
    width: 25px;
    height: 3px;
    background: #596778;
    position: absolute;
    top: 50%;
    margin-left: -12.5px;
    margin-top: -1.5px;
    transition: transform 200ms;
  }
  
  .lines { left: 25%; }
  .lines2 { left: 50%; }
  .lines3 { left: 75%; }
  
  .line-1 { transform: translate3d(0, -8px, 0); }
  .line-2 { transform: translate3d(0, 0, 0); }
  .line-3 { transform: translate3d(0, 8px, 0); }
  
  /* Toggle animations */
  .menu-open:checked + .menu-open-button .line-1,
  .menu-open2:checked + .menu-open-button2 .line-1,
  .menu-open3:checked + .menu-open-button3 .line-1 {
    transform: rotate(45deg);
  }
  
  .menu-open:checked + .menu-open-button .line-2,
  .menu-open2:checked + .menu-open-button2 .line-2,
  .menu-open3:checked + .menu-open-button3 .line-2 {
    transform: scale(0.1, 1);
  }
  
  .menu-open:checked + .menu-open-button .line-3,
  .menu-open2:checked + .menu-open-button2 .line-3,
  .menu-open3:checked + .menu-open-button3 .line-3 {
    transform: rotate(-45deg);
  }
  
  .menu {
    margin: auto;
    position: relative;
    width: 500px;
    height: 80px;
    text-align: center;
    box-sizing: border-box;
    font-size: 16px;
  }
  
  .menu-item:hover { background: #EEEEEE; color: #3290B1; }
  .menu-item2:hover { background: #EEEEEE; color: rgb(107,177,50); }
  .menu-item3:hover { background: #EEEEEE; color: rgb(177,58,50); }
  
  /* Transition durations */
  .menu-item:nth-child(1),
  .menu-item:nth-child(2),
  .menu-item2:nth-child(1),
  .menu-item2:nth-child(2),
  .menu-item2:nth-child(3),
  .menu-item3:nth-child(1),
  .menu-item3:nth-child(2),
  .menu-item3:nth-child(3) {
    transition-duration: 180ms;
  }
  
  /* Button animations */
  .menu-open-button,
  .menu-open-button2,
  .menu-open-button3 {
    z-index: 100 !important;
    transition: transform 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: scale(1.1);
    cursor: pointer;
    box-shadow: 3px 3px 0 rgba(0,0,0,0.14);
  }
  
  .menu-open-button:hover,
  .menu-open-button2:hover,
  .menu-open-button3:hover {
    transform: scale(1.2);
  }
  
  .menu-open:checked + .menu-open-button {
    transform: scale(0.8) translate3d(-250px, 0, 0);
  }
  
  .menu-open2:checked + .menu-open-button2 {
    transform: scale(0.8) translate3d(-200px, 0, 0);
  }
  
  .menu-open3:checked + .menu-open-button3 {
    transform: scale(0.8) translate3d(-150px, 0, 0);
  }
  
  /* Radial expansions */
  .menu-open:checked ~ .menu-item:nth-child(1) { transform: translate3d(-225px, -200px, 0); }
  .menu-open:checked ~ .menu-item:nth-child(2) { transform: translate3d(-200px, 0, 0); }
  
  .menu-open2:checked ~ .menu-item:nth-child(1) { transform: translate3d(-100px, 0, 0); }
  .menu-open2:checked ~ .menu-item:nth-child(2) { transform: translate3d(20px, 0, 0); }
  .menu-open2:checked ~ .menu-item:nth-child(3) { transform: translate3d(120px, 0, 0); }
  
  .menu-open3:checked ~ .menu-item3:nth-child(1) { transform: translate3d(-50px, 85px, 0) scale(0.9); }
  .menu-open3:checked ~ .menu-item3:nth-child(2) { transform: translate3d(50px, 100px, 0); }
  .menu-open3:checked ~ .menu-item3:nth-child(3) { transform: translate3d(150px, 115px, 0); }
  
  /* Colors */
  .blue { background-color: blueviolet; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .gold { background-color: goldenrod; color: #596778; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .green { background-color: green; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .green:hover { color: white; }
  .red { background-color: crimson; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .red:hover { color: white; }
  .purple { background-color: purple; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .purple:hover { color: white; }
  .orange { background-color: orange; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .orange:hover { color: white; }
  .lightblue { background-color: lightseagreen; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .lightblue:hover { color: white; }
  .orangered { background-color: orangered; box-shadow: 3px 3px 0 rgba(0,0,0,0.14); }
  .orangered:hover { color: white; }
  .lightgrey { background-color: transparent; text-shadow: 2px 2px #333; font-size: xx-large; }
  .lightgrey:hover { color: white; }
  
  .credit {
    margin: 24px 20px 120px 0;
    text-align: right;
    color: #EEEEEE;
  }
  
  .credit a {
    padding: 8px 0;
    color: #C49CDE;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .credit a:hover {
    text-decoration: underline;
  }
  
  .ocean {
    background-color: #3290B1;
    color: whitesmoke;
  }
  
  /* Dropdown menus */
  .menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
    background-color: #333;
    border-radius: 50px;
    text-align: center;
  }
  
  .menu > ul > li {
    position: relative;
    display: inline-block;
    width: 20%;
  }
  
  .menu > ul > li > a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: large;
  }
  
  .menu > ul > li > a:hover {
    background-color: #111;
  }
  
  .menu ul ul {
    display: none;
    position: absolute;

    background-color: transparent;
    z-index: 1000;
    line-height: 4;
  }
  
  .menu ul ul li {
    display: inline-block;
    height: 30px;
  }
  
  .menu ul ul li a {
    padding: 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: large;
  }
  
  .menu ul ul li a:hover {
    background-color: #111;
  }
  
  .menu > ul > li:hover > ul {
    display: block;
  }
  

  header {
    text-align: center;
    width: 100%;
  }

  #wikisUl{
      width:500px;
      margin-left:-50px;
  } 
  
  #gamesUl{
    width:500px;
    margin-left:-150px;
  }
  
  #videoUl{
    width:200px;
    margin-left:-25px;
  }
  
  #contactUl {
    width:100px;
    margin-left:-10px;
   
   }
  
   
  /* Mobile */
  @media screen and (max-width:511px) {
   
      #container2{
          position: fixed;
      top: calc(50vh + 200px);
      left: calc(50% - 200px);
      height: 400px;
      overflow: hidden;
      z-index: 5;
      zoom: 0.9;

      }
    
      .menu ul {
        width: 100%;
        margin: auto;
        border-radius: 50px;
      }
    
      .menu > ul > li {
        width: 24%;
      }
    
      #wikisUl{
        width:500px;
        margin-left:-10px;
    } 
  }
  
