/* Holy Convocations or Feasts
12/7/2022
http://riseisrael.com/convocations.html
*/

/* Base Structure */
html,
body {
  width: 100%;
  height: 100%;
}


/* Background */

/* Background for large screens*/
@media only screen and (min-width:800px) {
  .feasts {
    display: table;
    width: 100%;
    height: auto;
    background: 
    url(../img/feast-year.png),
    url(../img/feasts-bkg.jpg); 
    
    background-position:
      bottom center,
      top center;
  
  
    background-repeat: 
      repeat-y,
      repeat;
  
    background-attachment: fixed;
  
    background-size: 
      auto;
  
    -webkit-background-size: auto;
    -moz-background-size: auto;
    -o-background-size: auto;
  
    background-color: whitesmoke;
  }
  }
  
  
  /* Mobile Background */
  @media only screen and (max-width: 800px) {
    .feasts {
      display: table;
      width: 100%;
      height: auto;
      background: 
      url(../img/feast-year.png),
      url(../img/feasts-bkg.jpg); 
      
      background-position:
        bottom center,
        top center;
    
    
      background-repeat: 
        repeat-y,
        repeat;
    
      background-attachment: fixed;
    
      background-size: 
        cover;
    
      -webkit-background-size: cover;
      -moz-background-size: cover;
      -o-background-size: cover;
    
      background-color: whitesmoke;
    }
  }

/* Header */
header {
  padding: 50px 0;
  text-align: center;
}


/* Text */
p {
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}



/* Links */
a {
  color: #20dfdf;
}

a:visited,
a:active,
a:hover {
    color: darkorange;
}

/* Footer */
footer {
  margin-top: 3rem;
  margin-bottom: 2rem;
}


.holiday {
  background: rgba(26, 26, 26, .7);
   -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 7px solid #75c0c0;

   /* box border */
   -moz-border-radius: 72px;
   -webkit-border-radius: 72px;
   border-radius: 72px;
   box-shadow: 0px 0px 10px 10px rgb(255, 255, 190, .5);
   -moz-box-shadow: 0px 0px 10px 10px rgb(255, 255, 190, .5);
  -webkit-box-shadow: 0px 0px 10px 10px rgb(255, 255, 190, .5);
}

.holiday ul {
  color: #f2f2f2;
  text-shadow: 3px 3px 3px rgba(0,0,0,.5);
  font-size: 1.2rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.holiday p {
  color: #f2f2f2;
  text-shadow: 3px 3px 3px rgba(0,0,0,.5);

}