/* .container { */
	/* width: 500px; */
	/* height: 400px; */
	/* border: 5px solid red; */
	/* background-color: black; */
	/* display: block; */
/* } */

/* .container img { */
	/* height: 100%; */
	/* width: 100%; */
	/* object-fit: contain;  */
/* } */

html {
  box-sizing: border-box;
  font-size: 62.5%; 
  scroll-behavior: smooth; 
}

body {
  font-family: arail, helvetica, sans-serif;
  color: #333;
  font-weight: 300;
  line-height: 1.6; 
  background: #5dbcd2;
}

.container {
	display: grid;
	grid-gap: 10px;
	grid-template-columns: .01fr 1.99fr;
	grid-template-areas:
	"header header2"
	"content content"
	"content2 content2"
	"footer footer"; 
	background-color: #5dbcd2;
	color: white;
	padding: 15px;
	justify-content: center;
	text-align: center;
}

.pic_container {
	margin: auto; /* moves the div to the centre of the page. */
	grid-area: content;
	width: 500px;
	height: 300px;
}

.pic_container img {
	height: 100%;
	width: 100%;
	object-fit: contain; 
}

.musicplayer {
	grid-area: content2;
	justify-content: center; 
}

.header {
	grid-area: header;
	position: center;
}

.footer {
	grid-area: footer;
	font-size: 20px;
}

@media screen and (max-width: 600px) {
	.header{
	display: none;
	}
}
