/* Add a gray background color with some padding */
body {
  font-family: Source Sans Pro;
  background: #f1f1f1; */
  padding: 20px;
  background-attachment: fixed;
  background-image: url("images/black-brick.jpg");
}
/*  font-family: Arial; */
/*  background: #282828; */
/*  background: linear-gradient(-45deg, #D1C2A3, #D1C2A3, #040402, #040402); */
/*  background-size: 400% 400%; */
/*  animation: Gradient 15s ease infinite; */

@-webkit-keyframes Gradient {
  0% {
    background-position: 0% 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0% 50%
  }
}

/* Header/Blog Title */
.header {
  padding: 0px;
  font-size: 0px;
  text-align: center;
  background: #040402;
}

/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
  float: left;
  width: 75%;
}

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Full image */
.fullimg {
  background-image: url("images/YHVHAllepo.jpg");
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Add a card effect for articles with blue rounded corners*/
.card {
  border: 2px solid #3F48CC;
  background-color: #eee;
  border-radius: 40px;
  padding: 10px;
  margin: 10px 0;
}

/* Float images inside the card to the right. Add a right margin, and style the image as a circle */
.card img {
  float: right;
  margin-right: 5px;
  vertical-align: top;
  border-radius: 45%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Footer */
.footer {
  padding: 5px;
  text-align: center;
  margin-top: 5px;
  background: #040402;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
  .leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
  }
}

.readmorebutton {
  background-image: linear-gradient(#eee, blue);
  border: none;
  color: gold;
  padding: 15px 32px;
  text-align: center;
  text-decoration: bold;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}




/* Style the container with a rounded border, grey background and some padding and margin */
.container {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
}

/* Clear floats after containers */
.container::after {
  content: "";
  clear: both;
  display: table;
}

/* Float images inside the container to the left. Add a right margin, and style the image as a circle */
.container img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

/* Increase the font-size of a span element */
.container span {
  font-size: 20px;
  margin-right: 15px;
}

/* Add media queries for responsiveness. This will center both the text and the image inside the container */
@media (max-width: 500px) {
  .container {
    text-align: center;
  }

  .container img {
    margin: auto;
    float: none;
    display: block;
  }
}

* {
  box-sizing: border-box;
}
