/* Memorial of Blowing Trumpets
7/17/2020
http://riseisrael.com/trumpets.html
*/

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


/* Background */

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




.chadash {
  background: rgba(26, 26, 26, .7);
   -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 3px solid #c0c0c0;

   /* 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);
}

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

}

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

}



/* Links */
a {
  color: darkturquoise;
}

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

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

