/*
Theme name : Pumpkin Theme
*/

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	vertical-align: baseline;
  }
  body {
	background: #ef9e42;
	margin: 0;
	color: #26114e;
	font-size: 2rem;
	font-family: sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	flex-direction: column;
  }
  
  canvas {
	max-width: 1024px;
	width: 100%;
	height: 576px;
	border: 2px dotted #26114e;
	padding: 1rem;
	border-radius: 5px;
  }

  .message {
	padding-top: 2rem;
	font-size: 1.2rem;
	font-weight: 800;
  }

  .link {
	padding-block: 1rem;
	font-size: 1.2rem;
  }

  .link a {
	text-decoration: none;
	color: inherit;
	cursor: pointer;
  }

  .instruction {
	background-color: #40a037;
	width: fit-content;
	padding: 0.5rem;
	font-size: 1rem;
	margin-bottom: 1rem;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #26114e;
	margin: 1rem auto;
	border-radius: 5px;
  }

  .instruction b {
	font-weight: 800;
  }