  .dots {
    margin-left: 250px;
    margin-top: 15px;
  }

  .dot {
    display: inline-block;
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    background-color: #FFD95C;
  }

  .dot:hover {
    background-color: Lime;
  }

  .dot.active {
    background-color: #147012;
  }
