  /* ================================================ */

  /* style for Subjects */

  .jumbotron{
    margin-top: 100px;
    height : max-content;
  }

  @media only screen and (max-width: 875px) {

	.jumbotron {
	  width: 100%;
	  height : max-content;
	}
  }

  .blog {
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	margin: 20px 0;
	padding: 10px;
	width: 100%; 
	min-height: 200px;
  color:black;  
  box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
	transition: all .2s ease-in-out;
  }

  .blog:hover {
	box-shadow: 0 1px 31px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.24);
	transition: all .2s ease-in-out;
	}
	
  .blog span {
	cursor: pointer;
	display: inline-block;
	position: relative;
	transition: 0.5s;
	font-size: 20px;
  }
  
  .blog span:after {
	position: absolute;
	opacity: 0;
	top: 0;
	right: -20px;
	transition: 0.5s;
  }
  
  .blog:hover span {
	padding-right: 25px;
  }
  
  .blog:hover span:after {
	opacity: 1;
	right: 0;
  }


  /* For Minigranth Story Page styling */

  blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid orange;
}

blockquote {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 40px;
    margin-inline-end: 40px;
}