*{
    margin: 0;
    padding: 0;
}
body{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center,rgba(19, 19, 19, 0.829) 0%,rgba(0, 0, 0, 0.947) 70%,rgba(0, 0, 0, 0.939) 100%);
    
    overflow: hidden;
}
.contenImg{
   position: relative;
   text-align: center;
 
    
}
img{
    width: 27vw;
    border-radius: 50%;
    animation: aparicion 2s forwards;
    opacity: 0;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none; 
}
@keyframes aparicion {
  

     from { transform: scale(0.95); opacity: 0; 
    transform: translateY(40px);}
    50%{
        transform: translateY(30PX);opacity: 0;
    }
    100%{ transform: scale(1); opacity: 1;
      filter: drop-shadow(1px 1px 9px rgba(255, 255, 255, 0.675));
    transform: translateY(0px); }
    
}

.barra{
    width: 15vw;
    height: 8px;
    background: linear-gradient(to right,rgb(13, 98, 202),rgb(216, 20, 30),rgb(8, 53, 172));
    background-size:  200% 100%;
    margin: 12px auto;
    animation: bar 2s forwards 3s ;
    border-radius: 2px;
    opacity: 0;
}
@keyframes bar {
  

    0% { background-position: 0% 50%; 
    width: 0;opacity: 0; }
    50% { background-position: 100% 50%;
    }
    100% { background-position: 0% 50%; 
    width: 15vw;
    opacity: 1;}
    
}
