*, *:after, *:before {
    box-sizing: border-box;
     text-decoration: none;
    list-style-type:none;
   
     
  }
  
  
  body {
    margin: 0;
    background-color:#FFFFFF;
    text-decoration: none;
   
   
    
   
  }
  .colorPicker {
    margin-top: 1em;
    font-size: 0.875em;
    text-align: center;
    display: inline-table;
    width: 100%;
    max-width: 40em;
    background: #fff;
    padding: 2px;
    border-radius: 0.35em;
    box-shadow: 0 0.5em 1.5em rgba(0,0,0,0.15);
  }
  .colorPicker label {
    -webkit-tap-highlight-color: rgba(255,255,255,0.5);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    display: table-cell;
    cursor: pointer;
    vertical-align: middle;
    padding: 0.5em 1em;
    text-transform: capitalize;
    letter-spacing: -0.5em;
    color: transparent;
    opacity: 0.35;
    width: 1%;
    background-image: -webkit-linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));
    background-image: linear-gradient(rgba(255,255,255,0.1), rgba(0,0,0,0.1));
  }
  .colorPicker label.red {
    background-color: #ff3e05;
    -webkit-tap-highlight-color: #ff3e05;
  }
  .colorPicker label.orange {
    background-color: #ff8d05;
    -webkit-tap-highlight-color: #ff8d05;
  }
  .colorPicker label.yellow {
    background-color: #ecca05;
    -webkit-tap-highlight-color: #ecca05;
  }
  .colorPicker label.green {
    background-color: #40af04;
    -webkit-tap-highlight-color: #40af04;
  }
  .colorPicker label.blue {
    background-color: #057fff;
    -webkit-tap-highlight-color: #057fff;
  }
  .colorPicker label.indigo {
    background-color: #7500ca;
    -webkit-tap-highlight-color: #7500ca;
  }
  .colorPicker label.violet {
    background-color: #cc6fcc;
    -webkit-tap-highlight-color: #cc6fcc;
  }
  .colorPicker label:first-of-type {
    border-radius: 0.25em 0 0 0.25em;
  }
  .colorPicker label:last-of-type {
    border-radius: 0 0.25em 0.25em 0;
  }
  .colorPicker label:hover {
    opacity: 1;
    color: #fff;
    letter-spacing: normal;
  }
  .colorPicker input {
    display: none;
  }
  .colorPicker input:checked + label {
    width: 90%;
    opacity: 1;
    color: #fff;
    letter-spacing: normal;
  }
  
  body::-webkit-scrollbar {
      width: 1em;
  
  }
   
  body::-webkit-scrollbar-track {
     background-color: rgba(255,255,255,1);
  
  }
   
  body::-webkit-scrollbar-thumb {
    background-color: #FFF;
  
  }
  body::-webkit-scrollbar-thumb:hover {
    background-color: #000;
    -webkit-animation: scrollbig 1s; 
    animation: scrollbig 2s; 
  }
  .palette {
    width: 7.14%;
    height: 100px;
    float: left;
    position: relative;
    -webkit-transform-origin: 0% 100%;
    transform-origin: 0% 100%;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    z-index: 5;
  }
  .palette:hover {
    z-index: 10;
    cursor: pointer;
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.17), 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  .palette.open {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(2.5) rotate(90deg);
    transform: scale(2.5) rotate(90deg);
    z-index: 50;
  }
  .palette.open:hover {
    z-index: 55;
  }
  .palette.open .close {
    display: block;
  }
  .palette.open .code {
    opacity: 1;
  }
  .palette.open .code::after {
    opacity: 1;
    color: transparent;
    text-shadow: none;
  }
  .box9{
    font-size:55px;
    list-style-type: none;
    color:#fff;
    font-color:#fff;
    
  }
  .close {
    display: none;
    color: #fff;
    padding-left: 3px;
    text-shadow: 0 1px 0px rgba(0, 0, 0, 0.3);
    font-size: 12px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .code {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    color: #fff;
    font-size: 14px;
    left: 0px;
    top: 50%;
    padding: 10px;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.5);
  }
  .code::after {
    content: 'Color Copied';
    font-size: 6px;
    top: 25px;
    color: #333;
    opacity: 0;
    -moz-transition: opacity 0.3s 0.3s, color 0.3s 2s, text-shadow 0.3s 2s;
    -o-transition: opacity 0.3s 0.3s, color 0.3s 2s, text-shadow 0.3s 2s;
    -webkit-transition: opacity 0.3s, color 0.3s, text-shadow 0.3s;
    -webkit-transition-delay: 0.3s, 2s, 2s;
    -webkit-transition: opacity 0.3s 0.3s, color 0.3s 2s, text-shadow 0.3s 2s;
    transition: opacity 0.3s 0.3s, color 0.3s 2s, text-shadow 0.3s 2s;
    position: absolute;
    width: 100%;
    left: 10px;
  }
  
  #clipBoard {
    opacity: 0;
    position: absolute;
    z-index: 2;
  }
  
  @media (max-width: 640px) {
    .palette {
      width: 14.25%;
    }
  }
  @media (max-width: 480px) {
    .palette {
      width: 25%;
    }
  }
  @media (max-width: 320px) {
    .palette {
      width: 33%;
    }
  }
  @import url(https://fonts.googleapis.com/css?family=Open+Sans:400);
  .site-header {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Open Sans', sans-serif;
  }
  .site-header .header-title {
    font-size: 4em;
    margin: 0;
    color: #fff;
  }
  .site-header .header-control {
    transform: rotate(90deg);
    margin-top:130px;
  }
  
  .site-header .header-control-btn {
    color: #fff;
    font-size: 8em;
    text-decoration: none;
  }
  
  .site-topic {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    min-height: 16vh;
    padding: 0 0;
  }
  .site-topic-title {
    padding: 15px 0;
    font-size: 2em;
  }
  .site-footer {
    height: 50px;
    /* background: ; */
    font-color:#000;
  
  }
  .bounce {
    animation: bounce 2s infinite;
  }
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateX(0);
    }
    40% {
      transform: translateX(-20px);
    }
    60% {
      transform: translateX(-10px);
    }
  }
  
  .top{
      background-color: #F5AB35;
      bottom: 2em;
      color: #fff;
      display: none;
      opacity:0.6;
      padding: 1.5em;
      position: fixed;
      right: 1.5em;
      text-decoration: none;
    z-index: 100;
  }
  .top:hover{
      opacity:1;
      transition:1s;
  }
  
  .color-background {
    position: absolute;
    top: 0;
    left:19px;
    margin: 0 auto;
    padding: 0;
    height: 50vh;
    width: 100%;
    animation: colorBackground 20s infinite;
    /* Chrome, Firefox 16+, IE 10+, Opera 12.10+ */
    -webkit-animation: colorBackground 20s infinite;
    /* Chrome, Safari 5+ */
    -moz-animation: colorBackground 20s infinite;
    /* Firefox 5-15 */
    -o-animation: colorBackground 20s infinite;
    /* Opera 12.00 */
  }
  
  @keyframes colorBackground {
    0% {
       background-color: #fbcf61;
      color: #fbcf61;
    }
    20% {
      background-color: #6bd57e;
      color: #6bd57e;
    }
    40% {
      background-color: #ff6f6f;
      color: #ff6f6f;
    }
    60% {
      background-color: #57cff4;
      color: #57cff4;
    }
    80% {
      background-color: #0ed4c8;
      color: #0ed4c8;
    }
    100% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
  }
  
  @-webkit-keyframes colorBackground {
    0% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
    20% {
      background-color: #6bd57e;
      color: #6bd57e;
    }
    40% {
      background-color: #ff6f6f;
      color: #ff6f6f;
    }
    60% {
      background-color: #57cff4;
      color: #57cff4;
    }
    80% {
      background-color: #0ed4c8;
      color: #0ed4c8;
    }
    100% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
  }
  
  @-moz-keyframes colorBackground {
    0% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
    20% {
      background-color: #6bd57e;
      color: #6bd57e;
    }
    40% {
      background-color: #ff6f6f;
      color: #ff6f6f;
    }
    60% {
      background-color: #57cff4;
      color: #57cff4;
    }
    80% {
      background-color: #0ed4c8;
      color: #0ed4c8;
    }
    100% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
  }
  
  @-o-keyframes colorBackground {
    0% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
    20% {
      background-color: #6bd57e;
      color: #6bd57e;
    }
    40% {
      background-color: #ff6f6f;
      color: #ff6f6f;
    }
    60% {
      background-color: #57cff4;
      color: #57cff4;
    }
    80% {
      background-color: #0ed4c8;
      color: #0ed4c8;
    }
    100% {
      background-color: #fbcf61;
      color: #fbcf61;
    }
  }
  
  .color-me {
    position: relative;
    top: 35%;
    background-color: #fff;
    padding: 60px;
    font-size: 50px;
    text-align: center;
    letter-spacing: 3px;
  }
  
  .color-background .color-me p {
    padding: 0;
    color: transparent;
    font-size: 55px;
    text-transform: uppercase;
   position: absolute;
    top: 0;
    left: -19px;
    margin: 0 auto;
    padding: 0;
    text-align:center;
    
  font-family: futura;
    /* font-style: ; */
    width: 100%;
    margin: 0 auto;
    text-align: center;
    color: #313131;
    font-size: 45px;
    margin-top:40px;
    font-weight: bold;
    position: absolute;
    -webkit-animation: colorchange 20s infinite alternate;
  }
  
   
  @-webkit-keyframes colorchange {
    0% {
      color: #fbcf61;
    }
    10% {
      color: #8e44ad;
    }
    20% {
      color: #6bd57e;
    }
    30% {
      color: #d35400;
    }
    40% {
      color: #ff6f6f;
    }
    50% {
      color: #34495e;
    }
    60% {
      color: #57cff4;
    }
    70% {
      color: #2980b9;
    }
    80% {
      color: #0ed4c8;
    }
    90% {
      color: #2980b9;
    }
    100% {
      color: #fbcf61;
    }
  }
  input{
      margin: 0 auto;
      width:100%;
      height:2vh;
    /* min-height:100%; */
      background:transparent;
      border:none;
      font-size: 15px;
      font-family: 'Helvetica', sans;
      text-align: center;
    margin-top:5px;
  }
  
  input:focus{
        outline:none;
  }
  .color-wrapper {
          position: relative;
          width: 250px;
    margin-top:-20px;
    
    
      }
  
      .color-wrapper p {
          margin-bottom: 5px;
      }
  
      input.call-picker {
          /* border: 1px solid #; */
          color: #666;
          text-transform: uppercase;
          float: left;    
          outline: none;
        padding: 10px;
        text-transform: uppercase;
        width: 85px;
        margin-top:3px;
      margin-left:50px;
      }
  
      .color-picker {
          width: 410px;
          background: #F3F3F3;
          height: 161px;
          padding: 5px;
          border: 5px solid #fff;
          box-shadow: 0px 0px 3px 1px #DDD;
          position: absolute;
          top: 65px;
          left: 2px;
          z-index: 100000;
      }
  
      .color-holder {
        background: #fff;
          cursor: pointer;
          border: 1px solid #AAA;
          width: 40px;
          height: 36px;
          float: left;
          margin-left: 5px;
      }
  
      .color-picker .color-item {
          cursor: pointer;
          width: 28px;
          height: 28px;
          list-style-type: none;
          float: left;
          margin: 2px;
          border: 1px solid #DDD;
      }
  
      .color-picker .color-item:hover {
          border: 1px solid #666;
          opacity: 0.8;
          -moz-opacity: 0.8;
          filter:alpha(opacity=8);
      }
      p{
        margin: 0;
      }
      #three{
        margin: 0;
        height: 10vh;
      }
      .Something{
        margin: 0 auto;
        width: 54%;
        height: 5vh;
        background: #42bc0069;
        font-size: 19px;
        font-family: 'Helvetica', sans;
        text-align: center;
        margin-top: 12px;
        border-radius: 6px;
        border: 1px solid #40bd00;
      }