.sticky-note {
  background: #fffd75;
  background: linear-gradient(135deg, #fffd75 0%, #faf63c 100%);
  font-size:14px;
  width: 200px;
  min-height: 200px;
  padding: 20px;
  position: relative;
  margin: 20px;
  transform: rotate(-2deg);
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Courier New', Courier, monospace;
  color: #030069;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.2s ease;
}

.sticky-note::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10px;
  width: 90%;
  height: 10px;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  z-index: -1;
}

.sticky-note:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
  z-index: 20;
  cursor:url('/graphics/cursors/magic-cursor-pointer.png') 0 10, pointer;
}

.sticky-content {
  overflow-wrap: break-word;
}

.sticky-note-2 {
  background: #fa669f;
  background: linear-gradient(135deg, #fa669f 0%, #ff99c0 100%);
  font-size:14px;
  width: 200px;
  min-height: 200px;
  padding: 20px;
  position: relative;
  margin: 20px;
  transform: rotate(2deg);
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Courier New', Courier, monospace;
  color: #030069;
  line-height: 1;
  display: inline-block;
  vertical-align: top;
  transition: transform 0.2s ease;
}

.sticky-note-2::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10px;
  width: 90%;
  height: 10px;
  box-shadow: 0 10px 12px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  z-index: -1;
}

.sticky-note-2:hover {
  transform: rotate(0deg) scale(1.05);
  box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3);
  z-index: 20;
  cursor:url('/graphics/cursors/magic-cursor-pointer.png') 0 10, pointer;
}