/* general settings */
.my-title{
    background:black;
    margin-top:5%;
    color:white;
    padding:10px;
    border-radius: 10px;
}

.my-spinner{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem; 
    color: #000; 
}

.card-title{
    text-align: center;
}
.img-shadow {
    box-shadow: 0 0 13px 3px gray;;
  }
.form-control{
    background-color: white;
}

#github-link{
    font-size:1em;
    margin-top:10px;
}

.my-button{
    padding-left:25px;
    padding-right:25px;
    border-radius:30px
}

.my-paragraph{
    background-color:black;
    border-radius:30px;
    color:white;
    padding:30px;
    margin:20px;
    
}

#my-image-div{
    opacity:0.8;
    background-image:url('/single_cell/static/custom_home/atac.png');
    background-size: cover; /* Ensure the image covers the entire div */
    background-repeat: no-repeat; /* Prevent the image from repeating */

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    display:flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
    -webkit-transition: opacity 300ms;
    -moz-transition: opacity 300ms;
    -o-transition: opacity 300ms;
    transition: opacity 300ms;
}

.overlay:hover {
    opacity:1
}


@keyframes fade-in {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
}

.fade-in{
    opacity:0;
}

.an-fade-in{
    animation:fade-in  1s cubic-bezier(.26, .53, .74, 1.48) forwards;
}



@keyframes slide-up {
    from {
        transform: translateY(20%);
        opacity: 0;
    
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-up{
    opacity:0;
}
.an-slide-up{
    animation: slide-up 0.5s forwards ease-in-out
}



.pop-in{
    opacity: 0;
    transform: scale(0.5, 0.5);
}

.an-pop-in {
  animation-duration: 0.5s;
  animation-name: animate-pop;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  animation-fill-mode: forwards;
}

@keyframes animate-pop {
  0% {
    opacity: 0;
    transform: scale(0.5, 0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1, 1);
  }
}



@keyframes flip-in {
    from {
        transform: rotateY(90deg);
    
    }
    to {
        transform: rotateY(0deg);
    }
}

.flip-in {
    transform: rotateY(90deg);
    /*transition: transform 1s ease-in-out;*/
   
}

.an-flip-in {
    animation: flip-in 1.5s forwards ease-out;
}