.textEditor h1 {
  font-size: 40px;
  letter-spacing: .1em;
  text-align: center;
  font-weight: 100;
}

.textEditor .listTitle {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: .1em;
}

.textEditor .list {
  list-style-type: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 20px auto 30px;
  width: 880px;
}

.textEditor .list li {
  position: relative;
  width: 25%;
  padding-bottom: 25%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.textEditor .list .box {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 92%;
  height: 92%;
  padding: 15px;
  border: 1px solid #6eb92b;
  border-radius: 50%;
  color: #6eb92b;
  font-size: 17px;
  font-weight: 300;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.textEditor .list .box:hover {
  background-color: #6eb92b;
  color: #fff;
}

@media (max-width: 960px) {
  .textEditor .list {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .textEditor .list li {
    width: 50%;
    padding: 0 10px 20px;
  }
  .textEditor .list .box {
    position: static;
    -webkit-transform: translate(0%, 0%);
        -ms-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    width: 100%;
    height: 100%;
    border-radius: 0;
  }
}

@media (max-width: 560px) {
  .textEditor .list li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .textEditor h1 {
    font-size: 30px;
  }
  .textEditor .listTitle {
    font-size: 24px;
  }
  .textEditor .list {
    margin: 10px 0;
  }
  .textEditor .list li {
    padding: 0 0 20px;
  }
}
