html,body {
	height:100%;
	margin:0;
}

body {
	background:#000;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family: Georgia, 'Times New Roman', serif;
	color:#fff;
}

.container {
	text-align:center;
	max-width:900px;
	padding:20px;
}

.picture {
	display:inline-block;
	border:3px solid #fff;
	padding:6px;
	background:#000;
}

.picture img {
	display:block;
	max-width:70vw;
	max-height:60vh;
	width:auto;
	height:auto;
	object-fit:cover;
	background:#000;
	vertical-align:middle;
}

h1 {
	margin:18px 0 6px 10px;
	font-size:34px;
	letter-spacing:6px;
	color:#fff;
}

.emoji {
    outline: 2px solid red;
    height: 1em;
    width: auto;
    vertical-align: -0.15em;
    margin-left: 4px;
}

p.subtitle {
	margin:0;
	font-size:20px;
	color:#fff;
}

@media (max-width:600px){
	.container {
		max-width: 100%;
		padding: 10px;
	}
	.picture {
		border-width:2px;
		padding:4px;
	}
	h1 {
		font-size:24px;
	}
	p.subtitle {
		font-size:10px;
	}
}
