* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  html {
    font-family: "Montserrat", sans-serif;
  }
  body {
    background: #eee;
    padding: 0 16px;
  }
  
  header {
    background-color:#b1ea6b;
    margin:  0 -16px;
    padding: 50px 39px;
    box-shadow: 0 0 10px 0 rgba(72, 181, 105, 0.603);
  }
  
  header h1 {
    color: #fff;
    font-family: "McLaren", cursive;
    font-weight: 200;
  }
  
  footer {
    position: absolute;
    text-align: center;
    bottom: 0;
    width: 100%;
    height: 2.5rem;
  }
  
  footer p {
    color: #ccc;
  }
  .note {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 5px #ccc;
    padding: 10px;
    width: 240px;
    margin: 10px;
    float: left; 
    animation: glowingBorder 2s infinite;
  }
  .note h1 {
    font-size: 1.1em;
    margin-bottom: 6px;
  }
  .note p {
    font-size: 1.1em;
    margin-bottom: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
  }
  
  .note button {
    
    float: right;
    background-color: #8dbe51;
    color:#ffffff;
    border-radius: 20px;
    width: 50px;
    height: 36px;
    cursor: pointer; 
    border-color: white ;
    
  }
  
  form {
    position: relative;
    width: 480px;
    margin: 30px auto 20px auto;
    background: #fff;
    padding: 15px;
    border-radius: 7px;
    box-shadow: 0 0 10px 0 rgba(72, 181, 105, 0.603);
    animation: glowingBorder 2s infinite;
  } 
  form:hover{
    border-width: 5px;
  }
  form input,
  form textarea {
    width: 100%;
    border: none;
    padding: 4px;
    outline: none;
    font-size: 1em;
    font-family: inherit;
    resize: none; 
    color: #8dbe51;
  }
  form button {
    position: absolute;
    right: 18px;
    bottom: -18px;
    background: #b1ea6b;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    box-shadow: 0 0 10px 0 rgba(72, 181, 105, 0.603);
    cursor: pointer;
    outline: none;
  }
  
  @keyframes glowingBorder {
    0% {
      border-color: rgba(72, 181, 105, 0.603);
      box-shadow: 0 0 10px 0 rgba(72, 181, 105, 0.603);
    }
    50% {
      border-color: rgba(72, 181, 105, 0.903);
      box-shadow: 0 0 20px 5px rgba(72, 181, 105, 0.903);
    }
    100% {
      border-color: rgba(72, 181, 105, 0.603);
      box-shadow: 0 0 10px 0 rgba(72, 181, 105, 0.603);
    }
  }