body {
    color: #fff;
    background-color: #000 !important;
  }

  h1 {
  color: white;
  text-align: center;
  }

  h2 {
    color: #fff !important;
    text-align: center;
    }

  h3 {
    color: #fff !important;
    text-align: center;
    }

  h5 {
    text-align: center !important;
    color:aqua;
  }

  p {
  color: white;
  text-align: center;
  }

  .modal-body p {
    color:#000;
  }

  .small-print {
    font-size: 8px;
  }

  .image-container {
    margin-inline: auto;
    max-width: fit-content;
  }

  .dmc-logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .section-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
  }
  
  .circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: none;
    transition: opacity 0.3s ease;
  }
  
  .circle .question-icon {
    font-size: 100px;
    font-weight: 700;
    color: #000;
    z-index: 1;
  }
  
  .circle:hover .question-icon {
    display: none;
  }
  
  .circle:hover img {
    display: block;
  }
  
  .hidden-image {
    opacity: 0;
  }
  
  .circle:hover .hidden-image {
    opacity: 1;
  }
  
  a {
    text-decoration: none !important;
  }
  