@charset "UTF-8";

/* RESET */
* {
	box-sizing: border-box;
}
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;
	outline: none;
}
/* 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;
}
img {
	width: 100%;
	height: auto;
	display: block;
}

/* ---------- */

html, body {
	width: 100%;
	height: 100%;
	background-color: #f4f4f4;
	font-family: 'Baloo Da 2', sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #333;
}

h1 {
	font-size: 3.75em;
	line-height: 1.3em;
	color: #133c44;
}

#container {
	width: 50vw;
	height: 100%;
	margin: 0 auto 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
	#image {
		width: 100%;
		max-width: 480px;
		margin-bottom: 62px;
	}
		#image svg {
			fill: url(#MyGradient);
			filter: drop-shadow(5px 5px 8px rgb(35 65 90 / 0.12)) drop-shadow(-5px -5px 8px rgb(255 255 255 / 0.82));
		}
	#name {
		width: 95%;
		text-align: center;
	}


@media screen and (max-width: 640px) {
	h1 {
		font-size: 2.5em;
		line-height: 1.2em;
	}
}

@media screen and (max-width: 375px) {
	h1 {
		font-size: 2em;
		line-height: 1.1em;
	}
}