@import url('https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i');

html, body, div, span, object, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, address, code, img, small, strong, dl, dt, dd, ol, ul, li, fieldset, form, label {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

html, body {
  line-height: 1.5;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  height: 100%;
	box-sizing: border-box;
}

body {
	background: #000;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	justify-content: center;
}


h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #ccc;
  line-height: 1;
  margin: 15px 0 0;
  text-shadow: 0 2px #000;
  padding: 0;
}

.container {
	box-sizing: border-box;
  
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;  
  flex-direction: column;
  padding: 50px;
  text-align: center;
}

.art-container::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-top: 1px solid #333;
	border-left: 1px solid #333;
	z-index: 2;
	box-sizing: border-box;
  border-radius: 4px;
}

.art-container::after {
	content: '';
	position: absolute;  
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 20px solid #000;
	z-index: 1;
	box-sizing: border-box;
  border-radius: 4px;
}

.art-container {  
	position: relative;    
  width: 100%;
  height: 100%;
  box-shadow: 0 0px 100px -20px rgba(205, 218, 255, 0.3),               
              inset 0 0 10px 20px rgba(0,0,0,0.8);
  border: 1px solid #000;
  background: url('') no-repeat top center / contain #000;  
}

@media screen and (max-width: 768px) {

	.container { padding: 25px; }

}
