/*============================================================================================*/
/* Your custom styles below */
/*============================================================================================*/

.center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full viewport height */
    width: 100vw; /* Full viewport width */
    background: #121212; /* Optional: Dark background for contrast */
  }
  
  .circle-container {
    position: relative;
    width: 300px;
    height: 300px;
  }
  
  .circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(45deg, #1caed7, #1caed7, #e7e643, #FFF); /* Double blue to enhance it */
    animation: spin 3s linear infinite; /* Keeps the circle spinning */
    pointer-events: none; /* Prevent interaction blocking */
    box-shadow: 0 0 15px #1caed7, 0 0 20px #1caed7, 0 0 30px #e7e643, 0 0 40px #FFF;
    transition: box-shadow 0.2s ease; /* Smooth transition */
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%);
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 1) 80%);
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  .center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 1.2rem;
    z-index: 1;
  }
  
  .center-content img {
    width: 180px; /* Adjust size as needed */
  }
  