*{
    box-sizing: border-box;
  } 
  body {
  justify-content: center;    
  background-color: #bde0fe;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-wrap: wrap;
 margin:0px 100px;  
}
  
  .wrapper {
    display: flex;
    position:fixed;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 20px;
    
    }
  
  .cta {
      border: 2px solid #FBC638;
      display: flex;
      padding: 5px 15px;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 25px;
      color: white;
      align-items:center;
      background: #6225E6;
      transition: 1s;
      box-shadow: 6px 6px 0 black;
      transform: skewX(-15deg);
  }
  
  .cta:focus {
     outline: none; 
  }
  
  .cta:hover {
      transition: 0.5s;
      box-shadow: 10px 10px 0 #FBC638;
  }
  
  .cta span:nth-child(2) {
      transition: 0.5s;
      margin-right: 0px;
  }
  
  .cta:hover  span:nth-child(2) {
      transition: 0.5s;
      margin-right: 45px;
  }
  
  span {
      transform: skewX(15deg);
      font-family: 'Edu NSW ACT Foundation', cursive;
    cursor: pointer;
    }
  
    
  /**************SVG****************/
  
  path.one {
      transition: 0.4s;
      transform: translateX(-60%);
  }
  
  path.two {
      transition: 0.5s;
      transform: translateX(-30%);
  }
  
  .cta:hover path.three {
      animation: color_anim 1s infinite 0.2s;
  }
  
  .cta:hover path.one {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.6s;
  }
  
  .cta:hover path.two {
      transform: translateX(0%);
      animation: color_anim 1s infinite 0.4s;
  }

  .note{  
     transition: all 1s ease-in-out;
    background-color: #fff; 
    box-shadow: 0 0 10px 4px rgba(0, 0, 0, 0.1);
    margin: 90px -80px 0px -80px;
    height: 300px;
    width: 300px;  
  }

  .styleTwo{
    transition: all 1s ease-in-out;
    background-color: #ECFAF5;
    z-index:1;
  
  }
  
  .cnt{
    align-items:center;
    margin-right:50%;
    width: 20px;
  }
  
  .note .tools{
    background-color:#9EC862;
    display:flex;
    justify-content: flex-end;
    padding:1rem;
  }
  .note .tools button{
    background-color: transparent;
    border:none;
    font-size:1.5rem;
    cursor: pointer;
  } 
  .note .main{ 
    word-wrap: break-word;
    overflow: hidden;
    height:240px;    
    width:100%;
    padding:1rem;
    font-size:1.5rem;
    border: solid #9B9C9C;
     font-family: 'Edu NSW ACT Foundation', cursive;
  }

  .note textarea{
    overflow:hidden;
    outline:none;  
    border:none;  
    height:240px;
    width:100%;
    padding:1.5rem;
    font-size: 1.5rem;
    font-family: inherit;
  }
  
  .note .hidden{
    display: none;
  }
  
  