* {
  box-sizing: border-box;
}

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

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

.header h1 {
  font-size: 50px;
  color: #33FFF9;

}
.header p {
  font-size: 36px;
  color: #33FFF9;
		 }

/* Style the top navigation bar */
.topnav {
  overflow: hidden;
  background-color: #690C3B;
}

/* Style the topnav links */
.topnav a {
  float: left;
  display: block;
  color: 33FFF9;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Bitter', serif;
}

/* Change color on hover */
.topnav a:hover {
  background-color:#33FFF9
  color: #01FF70;
}

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

.blogcard {
  background-color: Red;
  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;
}
/* Right column */
.rightcolumn {
  float: left;
  width: 25%;
  padding-left: 20px;
}

/* Add a card effect for articles */
.card {
  background-color: #33FFF9;
	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: #000;
}
p{
  color:#000;
}`
.card h2{
  font-family: 'Bebas Neue', cursive;
  font-size: 35px;
}
.card h5{
  font-family: 'Bitter', serif;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.fa-snapchat-ghost {
  background: ;
  color: white;
  text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.fa-instagram {
  background: #125688;
  color: white;
}
.fa-twitter {
  background: #55ACEE;
  color: white;
}
.fa-youtube {
  background: #bb0000;
  color: white;
}
.fa {
  padding: 20px;
  font-size: 30px;
  display: inline-block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
}
div.polaroid {
  width: 100%;
}

.merch .polaroid {
  width: 100%;
  margin:  0px 5px 25px 5px;
}

div.container {
  text-align: center;
  padding: 10px 20px;
  color: black;
}

.merch {
  display: flex;
}

.button {
	border: none;
	color: black;
	background-color: #98fb98;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
	padding: 15px 32px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 14px;
		}
/* 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: #33FFF9
}

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