		@charset "utf-8";	
  

    .console{
      margin-top: 70px;
      text-align: center;
    }

    

    #togglePlay{
      margin-top: 20px;
      font-size: 20px;
      width: 100px;
      height: 100px;
      line-height: 70px;
      border-radius: 100%;
    }

    #togglePlay.pause{
      background-color: rgb(0, 0, 0);
      color: #fff;
    }

    #togglePlay.pause:after{
      content:"pause"
    }

    #togglePlay.play:after{
      content:"play"
    }

    #togglePlay.pause:hover{
      background-color: #fff;
      color: #333;
    }

    #togglePlay.play{
      background-color: #fff;
      color: #333;
    }

    #togglePlay.play:hover{
      background-color: rgb(0, 0, 0);
      color: #fff;
    }

    .goto {
      position: absolute;
      left:0;
      top: 360px;
      right: 0;
      margin: auto;
      text-align: center;
      width: 100%;
      height: 50px;
    }

    .goto .button{
      font-size: 30px;
      font-family: 'Lobster', cursive;
      padding: 10px;
      text-transform: none;
    }

    #wp {
      position: absolute;
      z-index: 10;
      min-width: 300px;
      background: rgba(0, 0, 0, 0.55);
      color: #fff;
      font-size: 24px;
      line-height: 24px;
      padding: 20px;
      bottom:60px;
      cursor: pointer;
      text-align: left;
      border-radius: 10px;
      font-family: 'Lobster', cursive;
    }

    #wp:hover {
      background: #000000;
    }

    #wp img {
      width: 60px;
      margin-right: 20px;
    }  