* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background-color: #01FF70;
  
}

/* Header/Blog Title */
.header {
  padding: 20px;
  text-align: center;
  background: #85144B;
  font-family: 'Bebas Neue', cursive;
}

.header h1 {
  font-size: 50px;
  color: #01FF70;
}

.header p {
  font-size: 36px;
  color: #01FF70;
		 }

.blogcard {
  background-color: #ffd1dc;
  padding: 50px;
  margin-top: 20px;
  margin-bottom: 10px;
  height: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.text {
  font-size: 40px;
}
.card {
  background-color: #85144B;
	padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-top: 20px;
  margin-bottom: 20px;
  color: #01FF70;
}
.card h2{
  font-family: 'Bebas Neue', cursive;
  font-size: 35px;
}
.card h3{
  font-family: 'Bitter', serif;
}
.card #link
{
  	color: white;
 		text-decoration: none;
  	font-weight: bold;
  	text-shadow: 1px 1px 2px pink;
}

div.polaroid {
  width: 100%;
  background-color: white;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  margin-bottom: 25px;
  margin-top: 25px;
			 }

div.container {
  text-align: center;
  padding: 10px 20px;
			  }
/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  background: #85144B;
  margin-bottom: 60px;
  color: #01FF70
}

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

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
  .topnav a {
    float: none;
    width: 100%;
  }
}