/*Redeveloped
Lab: Software Engineering
Exp:Identifying the Requirements from Problem Statements
File Name: main.css
Author: Prakriti Dhang */

html {
    position: relative;
    min-height: 100%;
  }
body {
    /* Margin bottom by footer height */
    margin-bottom: 100px;
  }

.card{
    margin-bottom: 10px;
    
}
/*footer {
    position: absolute;
    bottom: 0;
    
   
  }*/

  #m1{
    
      
      color: black;
      animation-name:highlight;
    animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  background-color: none;
  background: linear-gradient(90deg, yellow 49%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
}


  
  #m2{
    
    
    
    color: black;
    animation-name:highlight;
    animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  background-color: none;
  background: linear-gradient(90deg, yellow 50%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
 
}


#m3{
    
  
  
  color: black;
  animation-name:highlight;
    animation-duration: 5s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
  animation-play-state: paused;
  background-color: none;
  background: linear-gradient(90deg, yellow 49%, rgba(255, 255, 255, 0) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;

}
  
@-webkit-keyframes highlight {
  to {
    background-position: 0 0;
  }
}

@keyframes highlight {
  to {
    background-position: 0 0;
  }
} 


/*.block {
  height: 100vh;
  width: 100vw;
  
}

#highlight {
  display: inline-block;
  position: absolute;
  z-index: -1;
  background-color: yellow;
  height: 30px; 
  width: 0%;
  transition: width 0.5s;
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}

#item:hover #highlight{
 
  width: 130px; 
}*/