  body, html{
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Teko;
  }
  .wrapper{
    width: 100%;
    height: 100%;
    display: flex;
  }
  .color{
    height: 100%;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .img-body{
    width: 100px;
    height: 100px;
  }
  .color img{
    width: 100%;
    height: 100%;
    cursor: pointer;
    object-fit: contain;
    transition: all 0.3s ease 0s;
    border-radius: 15px;
  }
  .color label{
    cursor: inherit;
  }
  .color span:hover ,.color img:hover{
    background: rgba(0, 0, 0, 0.4);
  }

  .color-title{
    text-align: center;
    font-size: 40px;
    display: inline-block;
    transition: 0.3s ease 0s;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  .copy-text{
    font-size: 40px;
    opacity: 0;
    transition: all 0.2s ease 0s;
  }
  .copy-text.active{
    opacity: 1;
  }