* {
  box-sizing: border-box;
}

body {
  font-family: Arial;
  padding: 10px;
  background-color: rgb(0, 128, 0, 0.95);
  color: #0BFE6C;
}

/* Header/Blog Title */
header {
  background: url("https://images.unsplash.com/photo-1518495973542-4542c06a5843?crop=entropy&cs=tinysrgb&fm=jpg&ixlib=rb-1.2.1&q=80&raw_url=true&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1974");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: black;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 15vh;
  padding-top: 2vh;
  overflow: hidden;
}

header h1 {
  font-size: 40px;
  font-weight: bold;
  font-family: Merriweather, serif;
  text-align: center;

}
header p {
  font-size: 30px;
  color: black;
  text-align: center;
  font-weight: bold;
		 }

/* Style the top navigation bar */
nav {
  padding: 20px;
  background-color: black;
  margin: 0;
  justify-content: space-between;
  display: flex;
  flex-wrap: wrap;
}

/* Style the topnav links */
nav a {
  margin: 0px 10px;
  text-decoration: none;
  font-size: 20px;
  color: white;
  font-weight: bold;
  justify-content: space-between;
}

/* Change color on hover */
nav a:hover {
  background-color: #690C3B;
  color: black;
  font-weight: bold;
}

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

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

/* Add a card effect for articles */
.card {
  background-color: black;
	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: white;
}
.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: #fffc00;
  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 {
  max-width: 100%;
}

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

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

.merch {
  display: flex;
}

img
{
  max-width: 100%;
}
/* 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: black;
  margin-bottom: 60px;
  color: white;
  font-size: 25px;
}

.footer #smallText
{
	font-style: italic;
  font-family: 'Dancing Script', cursive;
  color: white;
}

p a
{
  color: white;
  text-decoration: none;
}

p a:hover
{
  cursor: pointer;
  color: black;
  background-color: #690C3B;
  font-weight: bold;
  padding: auto;
  margin: auto;

}

form
{
  background-color: black;
  margin: auto;
  padding-bottom: 30px;
  padding-top: 20px;
  padding-left: 10px;
  padding-right: 10px;
  color: white;
}

form button
{
 	border: none;
	color: black;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	margin: 20px;
}

.text
{text-align: center;}

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