/* Feast of Tabernacles
12/12/2021
http://riseisrael.com/tabernacles.html
*/

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


/* Background */

/* Background for large screens*/
@media only screen and (min-width:800px) {
  .tabernacles {
    display: table;
    width: 100%;
    height: auto;
    background: url(../img/tabernacles.jpg) no-repeat top center fixed;
    -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) {
    .tabernacles {
      display: table;
      width: 100%;
      height: auto;
      background: 
        url(../img/tabernacles.png),
        url(../img/thickbough.jpg);
      
      background-position:
        center center, 
        top center;
    
      background-repeat:
        no-repeat,
        repeat; 
    
      background-size: 
        200%, auto;
    
      -webkit-background-size: 200%, auto;
      -moz-background-size: 200%, auto;
      -o-background-size: 200%, auto;
    
      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;
}




.tent {
  background: rgba(26, 26, 26, .7);
    -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 7px solid rgb(99, 70, 45, .7);

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

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

}

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

}

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