* {
  -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: rgb(0,0,0);
}

body {
  -webkit-text-size-adjust: 100%;
  display: grid;
  margin: 0;
  place-items: center;
  font-family: 'Work Sans', sans-serif;
  font-size: 18px;
  line-height: 28px;
	color: rgb(255,255,255);
}

.bumper-top {
  height: 300px;
}

.hero img {
  width: 400px;
}

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

p {
  margin-bottom: 20px;
}

.coming-soon {
  padding-left: 10px;
	color: rgb(100,100,100);
	text-decoration: none;
  white-space: nowrap;
}
a {
  padding-left: 10px;
	color: rgb(255,255,255);
	text-decoration: none;
  white-space: nowrap;
  /* border-bottom: 1px solid currentColor; */
}

.bumper-middle {
  height: 50px;
}

.bumper-bottom {
  height: 100px;
}

/* media queries  */

/* mobile portrait */
@media only screen and (max-width: 450px) {
  body {
    font-size: 16px;
  }
  .bumper-top {
  	height: 200px;
  }
  .hero img {
    width: 250px;
  }
}
