
html {
  background: url('http://i.imgur.com/tN65y0x.jpg');
}

body {
  font-family: 'Source Serif Pro', serif;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 840px;
  margin: 0 auto;
  background: white;
  border: solid black 10px;
  padding: 10px;
}

h1,h2,h3,h4,h5,h6 {
  text-align: center;
}

h6 {
  margin-top: 0;
}

.memes {
  display: flex;
  justify-content: center;
}

.memes > img {
    padding: 2px;
}

.purchase-box {
  width: 500px;
  border: 1px dashed black;
  margin-bottom: 1em;
  text-align: center;
  font-size: 20px;
}

.purchase-box .t {
  padding: 1em;
}

ul {
  text-align: left;
}

#ghettofix1 img {
  width: 260px;
  height: 268px;
}

.page-title {
  font-size: 64px;
  margin-bottom: 0;
}

.arrow {
  font-size: 64px;
  padding: 16px;
}

blink {
    -webkit-animation: 1s linear infinite condemed_blink_effect; // for android
    animation: 1s linear infinite condemed_blink_effect;
}
@-webkit-keyframes condemed_blink_effect { // for android
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}
@keyframes condemed_blink_effect {
    0% {
        visibility: hidden;
    }
    50% {
        visibility: hidden;
    }
    100% {
        visibility: visible;
    }
}

a {
	text-decoration: none;
	color: inherit;
}

