/* Destruction of Nicanor
12/07/2022
http://riseisrael.com/nicanor.html
*/

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


/* Background */

/* Background for large screens*/

@media only screen and (min-width:1224px) {
  .nicanor {
    display: table;
    width: 100%;
    height: auto;
    background: url(../img/nicanor-bkg.jpg) no-repeat center 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) {
  .nicanor {
    display: table;
    width: 100%;
    height: auto;
    background: 
      url(../img/nicanor-mobile.jpg);
    
    background-position:
      top center;

    background-attachment: fixed;
  
    background-repeat:
      repeat; 
  
    background-size: 
      contain;
  
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
  
    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;
}



.bloody {
  background: rgba(26, 26, 26, .7);
    -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 7px solid #5c2021;

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

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

}

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

}

.bloody h4 {
  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;
}

