body {
  background-color: ;
}

div {
	border: 1px solid black;
  height: 250px;
  width: 250px;
	margin: auto;
  padding: 50px;
}

img {
 	display: block;
  margin-left: auto;
  margin-right: auto;
}

h3, p {
	text-align: center;
}


h1 {
  color: #32a832;
}

.rainbow {
  background-image: -webkit-gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
  background-image: gradient( linear, left top, right top, color-stop(0, #f22), color-stop(0.15, #f2f), color-stop(0.3, #22f), color-stop(0.45, #2ff), color-stop(0.6, #2f2),color-stop(0.75, #2f2), color-stop(0.9, #ff2), color-stop(1, #f22) );
  color:transparent;
  -webkit-background-clip: text;
  background-clip: text;
  
  * {
	box-sizing: border-box;
}

html, body {
	height: 100vh;
}

body {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #563f0e;
	padding: 50px;
}

$dash-size: 5px;
$theme-color: mediumseagreen;
$fill-color: beige;

.box {
	padding: 60px;
	max-width: 650px;
	background: lighten($theme-color, 20%);
	border: $dash-size dashed $theme-color;
	box-shadow: 0 0 0 ($dash-size / 2) darken($theme-color, 20%),
		        0 0 0 ($dash-size * 2.5) #fff,
		        inset 0 0 0 ($dash-size / 2) darken($theme-color, 20%),
		        0 $dash-size ($dash-size * 2) ($dash-size * 3) rgba(0,0,0,0.5),
		        inset 0 0 0 ($dash-size * 1.2) #fff,
		        inset 0 0 100vw 100vw $fill-color;
	color: $theme-color;
	font-family: Marcellus, serif;
	font-size: 3em;
	text-shadow: 0 2px #fff;
	text-align: center;
  }