/* Purim
2/21/2021
http://riseisrael.com/purim.html
*/

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


/* Background */

/* Background for large screens*/
@media only screen and (min-width:1024px) {
  .purim {
    display: table;
    width: 100%;
    height: auto;
    background: url(../img/purim-bkg.jpg) no-repeat top center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    background-color: whitesmoke;
  }
}

  /* Mobile Background */
@media only screen and (max-width: 800px) {
  .purim {
    display: table;
    width: 100%;
    height: auto;
    background: 
      url(../img/purim-bkg.jpg);
    
    background-position:
      top center;

    background-attachment: fixed;
  
    background-repeat:
      no-repeat; 
  
    background-size: 
    contain;
  
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
  
    background-color: whitesmoke;
  }
  }
  

  @media (orientation: landscape) {
    .purim {
      display: table;
      width: 100%;
      height: auto;
      background: 
        url(../img/purim-bkg.jpg);
      
      background-position:
        center center;
  
      background-attachment: scroll;
    
      background-repeat:
        no-repeat; 
    
      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: darkturquoise;
}

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

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



.regal {
  background: rgba(26, 26, 26, .7);
   -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 7px solid rgb(109, 19, 73, .7);

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

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

}

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

}

.regal h4 {
  color: #f2f2f2;
  text-shadow: 3px 3px 3px rgba(0,0,0,.5);  
}