@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
.frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  margin-top: -200px;
  margin-left: -200px;
  border-radius: 2px;
  box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: linear-gradient(45deg, #43399f, #4ec5ca);
  color: #333;
  font-family: "Open Sans", Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.center {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.number {
  position: relative;
  width: 200px;
  height: 200px;
  top: 20px;
}

.one-one {
  background: #fff;
  width: 20px;
  height: 40px;
  transform: rotate(50deg);
  position: absolute;
  top: 0;
  left: -16px;
  border-radius: 3px;
  z-index: -1;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2);
}

.one-two {
  background: #fff;
  height: 100px;
  width: 25px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 3px;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2);
}

.zero-one, .zero-two {
  position: absolute;
  width: 50px;
  top: 0;
  height: 50px;
  left: 17px;
  border: 25px solid white;
  border-radius: 50%;
  z-index: 8;
  box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.2);
}

.zero-two {
  left: 100px;
  z-index: -1;
}

.big-letters {
  display: block;
  font-size: 75px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  line-height: 60px;
  z-index: 20;
  margin-top: 6px;
  bottom: 75px;
}

.small-letter {
  display: block;
  font-size: 23px;
  color: #fff;
  font-weight: 700;
  line-height: 20px;
  position: relative;
  bottom: 70px;
  letter-spacing: 2px;
}