/*Header styling*/
.header {   
    padding: 3px ;
    text-align: left;
    /* background: linear-gradient(to bottom right, rgb(13, 13, 70) 30% , rgb(19, 121, 216)  ); */
    z-index: 99;
    background-image: url(BannerSF2.jpg); /* sets the header image to be used globally */
    background-position: center;
    background-size: 50%;
    background-repeat: repeat;
    
    
}

.popup {   
    padding: 30px ;
    text-align: left;
    background: rgb(167, 155, 155);
    z-index: 200;
    
    
}


.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.stick + .content {
    padding-top: 102px;
}

 /* From .header until #login include CSS classes and ids that define the global header */


a{ /* Managing the links to be clicked on throughout the website. */
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color:darkred;
    font-size: 28px;
    font-weight: bold;
    /* Give back image shadow */
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}


li {
    display: inline;
    color: white;
  }

  li :hover{
   color: grey;
    
}
  
.space {
    display: inline;
    margin-right: 20px;
}

h2 {
    padding-left:20px;
    color: antiquewhite;
    text-shadow: 0px 0px 4px white, -1px -1px white, 2px 2px white;
}

/* a, ul, li, space and h2 are all css elements tasked to setting the appropraite global header. */

.fades {
    opacity:0;  /* make things invisible upon start */
    -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }
  
  .fades.one {
    -webkit-animation-delay: 4s;
    -moz-animation-delay: 4s;
    animation-delay: 4s;
  }
