/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

html, body {
    min-height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	box-sizing: border-box;
	gap: 10px;
	padding: 20px;
    background: url("./bg.jpg") no-repeat center center fixed;
    background-size: cover;
}

#title {
	font-family: "Bitcount Single Ink", system-ui;
	font-size: 24px;
}

@media (min-width: 480px) {
	#title {
		font-size: 48px;
	}
}

 .sticker {
    max-width: 520px;
    /* aspect-ratio: 3.25 / 2.45; */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    background: white;
    border: 4px solid white;
  }

  .header {
    background: #e53935;
    color: #fff;
    padding: 10px 14px 18px;
  }
  .hello {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .3px;
  }
  .sub {
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
    opacity: .95;
  }

  .name {
    height: 100%;
    background: #fff;
    padding: 10px 14px 18px;
  }

#img {
	max-width: 100%;
	height: auto;
	display: block;
}

#social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

