 
.sign {

    position: absolute;
    left: 22%;
    top: 0px;
    z-index: 9;
    float: left;
    margin: 100px 3em 0;
    width: 180px;
    border: 5px solid #fff;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4), 0 5px 10px rgba(0, 0, 0, 0.4); 
    transform-style: preserve-3d;
    backface-visibility: hidden;
    border-radius: 5px;
    transform-origin: 50% -65px;
    animation: swing 1.5s infinite alternate ease-in-out;
  }
  .sign:hover {
    /* Hover over the sign to stop the animation */
    animation-play-state: paused;
  }
  .sign P {
    /* Typography */
    font-smoothing: antialiased;
    /* let's have uppercase.. */
    text-transform: uppercase;
    /* Arial... */
    font-familty: Arial, sans-serif;
    /* bold... */
    font-weight: bold;
    /* white... */
    color: #fff;
    /* centered text */
    text-align: center;
    /* with a subtle drop shadow for definition */
    text-shadow: 0 0 2px rgba(0,0,0,1);
    /* kill any default P margins and center it */
    margin: 0 auto;
    line-height: normal;
  }
   
    
  .three P {
    font-size: 1.8em; 
  }
  .three SPAN {
    display:block;
    font-size:0.7em;
  }
  .sign IMG {
    display:block;
    width: 100%;
    margin:auto;
  }
  .sign:before {
    /* string */
    position: absolute;
    content: "";
    /* string thickness/color */
    border: 2px dotted #ff3131;
    /* hide string after connection with sign */
    border-bottom: none;
    border-left: none;
    /* string 'size' (as a -45deg rotated square) */
    width: 100px;
    height: 100px;
    /* string position */
    top: -55px;
    left: 50%;
    margin-left: -50px;
    /* string construct */
    transform: rotate(-45deg);
    /* string curved round nail body (unseen) */
    border-radius: 0 5px 0 0;
  }
  .sign:after {
    /* nail */
    position: absolute;
    content: "";
    /* nail head size */
    width: 10px;
    height: 10px;
    /* nail head as a circle */
    border-radius: 50%;
    /* nail position */
    top: -75px;
    left: 50%;
    margin-left: -4px;
    /* nail head default color + gradient (where supported) */
    background: #fff;
    background: linear-gradient(top, #4c4c4c 0%, #595959 12%, #666666 25%, #474747 39%, #2c2c2c 50%, #000000 51%, #111111 60%, #2b2b2b 76%, #1c1c1c 91%, #131313 100%);
  }
  /* sign swinging animation sequence */
  @keyframes swing {
    0% { transform: rotate(-3deg) }
    100% { transform: rotate(3deg) }
  }