/* MLK: The Dreamer
1/26/2022
http://riseisrael.com/mlk.html
*/

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


/* Background */
body {
  display: table;
  width: 100%;
  height: auto;
  background: url(../img/mlk.jpg) no-repeat top center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  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;
  color: #000;
}

/* Text Box */
.dreaming {
  margin-top: 40px;
  background: rgba(255, 245, 104, 0.8);
   -webkit-font-smoothing: antialiased;
  padding: 30px;
  border: 3px solid #603913;


  -moz-box-shadow: 0px 0px 7px 7px #603913;
  -webkit-box-shadow: 0px 0px 7px 7px #603913;
  box-shadow: 0px 0px 7px 7px #603913;

  
    /* rounding box corners*/
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px; 
}


/* Links */
a {
  color: #ff0000;
}

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

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

