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

/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  background-color: #f1f1f1;
  padding-left: 20px;
}
.img{
  background-color: #f1f1f1;
}
/* Fake image */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}
.scrollAncor{
    display: block;
    position: relative;
    top: -385px;
}
/* Add a card effect for articles */
.card {
margin-top:280px;
	padding-top:100px;
  
  background-color: white !important;
  padding: 20px;
  margin-top: 20px;
  overflow: auto;
  overflow-y: hidden;
}
.card center  {
  margin-left: auto;
  margin-right: auto;
  width: 50%;
    background-color: white !important;
  }
.centerImg{
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card.myanchor {
  position: absolute;
  left: 0px;
  top: 250px;
}
/* .card::before {
  content:"";
  display:block;
  height:220px; fixed header height
  margin:+250px 0 0; negative fixed header height
} */
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

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

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

