body, html {
    height: 100%;
    margin: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#circle {
    border: 5px solid white;
    border-top: none;
    border-radius: 50%;
    width: 200px;
    height: 200px;
    animation: drawCircle 2s forwards;
}

@keyframes drawCircle {
    from {
        width: 0;
        height: 0;
        opacity: 1;
    }
    to {
        width: 200px;
        height: 200px;
        opacity: 1;
    }
}


    
#imageA {
    /* Add dissolve transition styles */
    animation: dissolveEffect 1s ease-in-out forwards;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  
  @keyframes dissolveEffect {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  
   
   


