body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f1f1f1;
  }

  .notice-board {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card {
    width: 100%;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .card-header {
    padding: 15px;
    background-color: #102089;
    color: #fff;
    border-radius: 5px 5px 0 0;
  }

  .card-body {
    padding: 20px;
    overflow-y: auto;
    max-height: 300px; /* Adjust the max height as needed */
  }

  .marquee {
    list-style-type: square;
    margin-left: 20px;
    animation: scrollMarquee 15s linear infinite;
  }

  .marquee li {
    margin-bottom: 10px;
  }

  .marquee li img {
    vertical-align: middle;
    margin-left: 5px;
    height: 30px;
    width: 40px;
  }

  @keyframes scrollMarquee {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(calc(-100% - 10px)); /* Adjust the scroll distance as needed */
    }
  }