.circular-banner {
    width: 200px;
    height: 200px;
    background-color: #007bff; /* Primary background color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  .no-horizontal-scroll {
    overflow-x: hidden;
  }