body{
  background-color: white;
  font-family: Cambria, serif;
  margin: 30px
}

button,
input {
  font-family: Helvetica;
  font-size: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: 500ms;
  cursor: pointer;
}

button:hover{
  color: white;
  background-color: black;
  border: 1px solid white; 
}

button:focus{
  color: white;
  background-color: black;
  border: 1px solid white; 
}

.buttonlink {
  font-family: inherit;
  font-size: 100%;
  background: #FFFFFF;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  transition: 500ms;
  text-decoration: none;
  color: black;
}

a:visited{
  color: black;
}

a:hover{
  color: white;
  background-color: black;
}

a:focus{
  color: white;
  background-color: black;
}

.unshuffled{
  text-align: center;
  width: 90%;
  margin: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.shuffled{
  display: none;
  text-align: center;
  width: 90%;
  margin: 30px;
  margin-left: auto;
  margin-right: auto;
}

img{
  width: 45%;
  border: 1px dotted black;
  margin: 20px;
  display: inline-block;
}

.container{
  display: block;
}

div{
  width: 100%;
}

hr
		{
			margin-top: 2pt;
			margin-bottom: 2pt;
			border: none !important;
			background: rgba(0,0,0, 0.4);
			height: 9pt;
			padding: 0px;
		}
		
hr::before
		{
			content: "Fold Here";
			font-size: 6pt;
			line-height: 11pt;
			font-family: 'Helvetica', 'Arial', sans-serif;
			font-weight: bold;
			text-transform: uppercase;
			
			color: white;
			
			display: block;
			
			text-align: center;
			
			width: 100%;
		}
		
hr + p
		{
			margin-top: 4pt;
		}