* {
  -moz-box-sizing: border-box; /* set border-box so that percents can be used for width, padding, etc (personal preference) */
  -webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0,0,0,0); /* turns off blue highlight color for mobile */
	-webkit-tap-highlight-color: transparent; /* turns off blue highlight color for mobile */
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	border: 0;
}

html {
	height: 100%;
	background-color: #151214;
}


body {
  -webkit-text-size-adjust: 100%;
  display: flex;
  margin: 0;
  height:100vh;
  align-items:center;
  font-family: 'Courier';
  font-size: 16px;
	color: rgb(155,155,155);
}

.bumper-top {
  height: 300px;
}

.hero {
  width: 100vw;
  margin: 0 auto;
  overflow: auto;
}

.hero img {
  width: 100%;
  height: 100%;
}

.description {
  margin-top: 100px;
  max-width: 600px;
  padding-left: 25px;
  padding-right: 25px;
}

p {
  margin-bottom: 10px;
}

a {
	color: rgb(70,70,70);
	text-decoration: none;
}

.bumper-bottom {
  height: 60px;
}

/* media queries  */

/* mobile portrait */
@media only screen and (max-width: 450px) {
  body {
    font-size: 12px;
  }
  .bumper-top {
  	height: 100px;
  }
}
