html, body {
	width: 100%;
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

body {
	font-family: Google Sans, Noto, Roboto, Helvetica Neue, sans-serif;
	color: #244376;
}

.container {
	max-width: 600px;
	margin: auto;
	padding: 0px 10px;
}


.card {
  margin: 3em 0px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

model-viewer {
  width: 100%;
  height: 400px;
  background-color: #914D56;
  --poster-color: #ffffff00;
	
	background-image: url(images/c1df22f81832ea1cd98c3ddabb5bf3b1.png);
	background-size: cover;
	background-repeat: no-repeat;
}

.attribution {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 1em;
}

.attribution h1 {
  margin: 0 0 0.25em;
}

.attribution img {
  opacity: 0.5;
  height: 2em;
}

.attribution .cc {
  flex-shrink: 0;
  text-decoration: none;
}

footer {
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5em;
	background-color: #212121;
	margin-top: 3em;
	padding: 20px 10px;
}
footer p {
	color: white;
	margin: 0px;
	text-align: center;
}
footer p a {
	color: white;
}

.row {
	max-width: 600px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-around;
}

.row a {
	background-color: #212121;
	border: solid 2px #212121;
	color: white;
	padding: 10px 20px;
	border-radius: 10px;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
}

.row a:hover, .row a:focus {
	background-color: white;
	color: #212121;
}

.row a i {
	margin-right: 5px;
}