body {
    background-image: url('..\\images\\render.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-color: black;
}


.slogan {
    color: rgb(190, 255, 250);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight:lighter;
    font-size:40px;

    text-align: center;
    animation: glow 10s ease-in-out infinite alternate;
    letter-spacing: 0px;

    position: absolute;
    top: 35vw;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
  }
  
  @keyframes glow {
    from {
      text-shadow: 0 0 1px #ffffff, 0 0 4px #00ffd9, 0 0 6px #00e6de, 0 0 8px #00e6de, 0 0 10px #00e2e6, 0 0 12px #00cfe6, 0 0 14px #00dbe6;
    }
    to {
      text-shadow: 0 0 2px #fff, 0 0 6px #25ffd7, 0 0 8px #22ffe9, 0 0 10px #25ffe9, 0 0 12px #25ffe2, 0 0 14px #4dfffc, 0 0 16px #4dffe7;
    }
  }


  .Menu {
    position:absolute;

    padding: 2.5%;

    width:90vw;
    
    bottom: 0;

    overflow: hidden;

    height: 10%;
    margin-left: 0px;
    padding-left: 0px;
    left: 0px;
  }

  table{
    width: 100vw;
    height: 100%;
    text-align: center;
    overflow: hidden;
    margin-left: 0px;
    padding-left: 0px;
  }

  td{
    width: 33.333333333333333333333333%;
    height: 100%;
    margin: 0px;
    padding: 0px;
  }

  a{
    text-align: center;
    text-decoration: none;
    color: rgb(255, 255, 255);
    padding: 10px;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: lighter;

    text-shadow: 0 0 4px #ffffff, 0 0 4px #cdcdcd, 0 0 6px #b2b2b2, 0 0 8px #969696, 0 0 10px #767676, 0 0 12px #444444, 0 0 14px #000000;
    overflow: hidden;

    transition: transform .2s ease-in-out;
  }

  a:hover{
    display:inline-block;
    -ms-transform: scale(1.2, 1.2); /* IE 9 */
      -webkit-transform: scale(1.2, 1.2); /* Safari */
      transform: scale(1.2, 1.2);

    font-weight: normal;
  }