* {
	box-sizing: border-box;
}

html {
	background: rgb(0,0,0);
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(153,128,150,1) 49%, rgba(0,0,0,1) 100%);
}

body {
  position: relative;
  background-color: black;
  margin: auto;
  width: 500px;
  max-width: 100%;
  font-family: 'Lato', sans-serif;
	padding: 1.25em 2em 2em 2em;
}


h1, h2 {
	margin: 0;
    padding: 0;
	position: relative;
	z-index: 0;
	text-transform: uppercase;
}

h1 {
	
	font-weight: 900;
}

h2{
	font-weight: 400;	
}



#davidsimage {
	width: 500px;
	margin: auto;
	max-width: 100%;
	z-index: 4;
	margin-top: 1em;
}

#davidsimage img {
	width: 100%;
}

p, table {
	color: antiquewhite;
	font-size: 1.2em;
    line-height: 1.5em;
}

table {
	margin-bottom: 1.5em;
}

.question {
	font-size: 1.5em;
}

h1 {color: #b56291}

h2 {color: #7496b9}

input, textarea {
	width: 100%;
	font-size: 1.3em;
    padding: .25em;
	margin-bottom: 1em;
}

button {
	width: 100%;
    font-size: 1.5em;
    margin-bottom: 1em;
	cursor: pointer;
}


#message {
	background-color: antiquewhite;
	text-align: center;
    font-size: 2em;
}

.strike1::before, .strike1::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 60%;
}
.strike1::before {
  border-bottom: .2em solid #f65026;
  -webkit-transform: skewY(-1.5deg);
  transform: skewY(-1.5deg);
}
.strike2::before, .strike2::after {
  content: '';
  width: 100%;
  position: absolute;
  right: 0;
  top: 30%;
}
.strike2::before {
  border-bottom: .2em solid #f65026;
  -webkit-transform: skewY(2deg);
  transform: skewY(2deg);
}



.strike1::before {
    border-bottom: 5em solid rgba(0,0,0,0.75);
	top: 50%;
} 

.strike2::before {
    border-bottom: 5em solid rgba(0,0,0,0.55);
	top: 50%;
}

@media only screen and (max-width: 600px) {
  body {
	padding: .75em 1em 1em 1em;
}
}