* {
  box-sizing: border-box;
}

/* Add a gray background color with some padding */
body {
  font-family: Raleway;
  padding: 20px;
  background: #CDFFC9;
}

/* Header/Blog Title */
.header {
  padding: 30px;
  font-size: 40px;
  text-align: center;
  background: white;
}

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

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

/* Add a card effect for articles */
.card {
   background-color: white;
   padding: 20px;
   margin-top: 20px;
}

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

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

/* Fixed/sticky icon bar (vertically aligned 50% from the top of the screen) */
.icon-bar {

}

/* Style the icon bar links */
.icon-bar a {
  display: block;
  text-align: center;
  padding: 5vh;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

/* Style the social media icons with color, if you want */
.icon-bar a:hover {
  background-color: #000;
}

.facebook {
  background: #3B5998;
  color: white;
}

.twitter {
  background: #55ACEE;
  color: white;
}

.google {
  background: #dd4b39;
  color: white;
}

.linkedin {
  background: #007bb5;
  color: white;
}

.youtube {
  background: #bb0000;
  color: white;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

figure {
  display: inline-block;
  text-align: center;
  margin: 5px; /* adjust as needed */
}
figure img {
  vertical-align: top;
}

a.hyp {
  border-bottom-style: solid;
  border-color: rgba(105, 254, 50, 0.5);
  color: rgb(42, 55, 69);
}
a.hypf {
  border-bottom-style: solid;
  border-color: rgba(105, 254, 50, 0.5);
  color: rgb(255, 255, 255);
}
a.hypn {
  border-color: rgba(105, 254, 50, 0.1);
  border-bottom-style: solid;
  color: rgb(255, 255, 255);
}
a.hypn:hover {
  border-color: rgba(105, 254, 50, 0.5);
}

.green{
	backgroundcolor: rgba(105, 254, 50, 0.5);
}