:root {
	--page-width: 30rem;
	--light-blue: #078DDB;
	--orange: #FF6C02;
	--dark-blue: #002765;
	--pale-orange: #FBF1EA;
	--line-height: 1.4rem;
	font-size: 26px;
	padding: 0 0.6rem 0 1rem;
	-webkit-text-size-adjust: none;
}

* {
	box-sizing: border-box;
}

h1, h2, h3, p, a, ul, ol, li, header, main, footer, body, section, div {
	font-family: "Rubik", sans-serif;
	margin: 0;
	padding: 0;
	border: 0;
	color: var(--dark-blue);
	line-height: var(--line-height);
	overflow-wrap: break-word;
}

main, footer, header {
	max-width: var(--page-width);
	width: 100%;
	margin: 0 auto;
}

header {
	text-align: left;
	margin-top: 1.785rem;
}

h1 {
	color: var(--orange);
	font-size: 5rem;
	font-weight: bold;
	line-height: calc(var(--line-height) * 3);
	white-space: nowrap;
}

h1 span {
	color: var(--dark-blue);
	position: relative;
	top: 0.05rem;
}

#sub-line {
	font-weight: bold;
}

h2, h3, p {
	font-size: 1rem;
}

h2 {
	font-weight: bold;
	color: var(--light-blue);
}

h3 {
	font-weight: bold;
}

p {
	color: var(--dark-blue);
}

body {
	background-color: var(--pale-orange);
}

#info {
	position: relative;
	top: -1.37rem;
	text-align: right;
	margin-bottom: 1.55rem;
}

.meeting {
	margin-top: calc(var(--line-height) / 2);
}

.meeting h3, .meeting p {
	display: inline;
}

.meeting h3:after {
	content: ':';
}

.meeting p:before {
	content: ' ';
}

.meeting a h3 {
	text-decoration: underline;
}

.meeting a {
	text-decoration: none;
}

section {
	padding-bottom: var(--line-height);
}

main {
	margin-top: 0.1rem;
}


@media (max-width: 30rem) /* !!!: keep in sync with --page-width */
{
	:root {
		font-size: 20px;
	}

	header {
		margin-top: 1.58rem;
	}

	h1 {
		font-size: 3.5rem;
		line-height: calc(var(--line-height) * 2);
		white-space: normal;
	}

	h1 span {
		top: 0.04rem;
	}

	main, footer, header {
		max-width: 100%;
	}

	#info {
		top: 0.15rem;
	}
}

@media (max-width: 370px)
{
	#info {
		position: static;
		margin-top: 1.55rem;
		margin-bottom: var(--line-height);
		text-align: left;
	}

	#info br {
		display: none;
	}
}
