.corkBoard {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 42px auto;
  position: relative;
}

.note {
  width: 180px;
  min-height: 150px;
  padding: 15px;
  background: #fff8a6;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.3);
  position: absolute;
  transform: rotate(-2deg);
  font-size: 14px;
}

/* Different note colors */
.pink {
  background: #ffd6e7;
}
.blue {
  background: #cfe9ff;
}
.green {
  background: #d6ffd6;
}
.purple {
  background: #e4d6ff;
}

/* Pushpin effect */
.note::before {
  content: "";
  width: 14px;
  height: 14px;
  background: red;
  border-radius: 50%;
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
}

.note1 {
  top: 63px;
  left: 450px;
}
.note2 {
  top: 300px;
  left: 480px;
  background: #ffd6e7;
  transform: rotate(2deg);
}
.note3 {
  top: 330px;
  right: 450px;
  background: #cfe9ff;
  transform: rotate(-3deg);
}
.note4 {
  top: 120px;
  right: 500px;
  background: #e4d6ff;
  transform: rotate(1deg);
}
