html {
	height: 100%;
}

body {
	font-family: 'Josefin Sans', sans-serif;
	line-height: 1.25;
	display: flex;
	height: 100%;
	flex-direction: column;
}

body.bg {
	 background: url(./bg.jpg) center;
	 background-size: cover;
}

body.dark {
	color: white;
}

header {
	flex: 1;
	padding: calc(1vw + 1vh);
}

h1 {
	font-size: 8rem;
	font-weight: bold;
}

.dark h1 {
	-webkit-text-stroke: 1px rgb(100,100,100);
	text-stroke: 1px rgb(100,100,100);
}

h2 {
	font-size: 1rem;
	font-weight: bold;
}

h3 {
	font-size: 1rem;
	font-weight: bold;
}

a {
	text-decoration: none;
	color: inherit;
}

section {
	display: flex;
	align-items: center;
	max-width: 100%;
	overflow-y: hidden;
	overflow-x: auto;
	padding: calc(1vw + 1vh);
}

.dark section {
	background: rgba(134,134,134, 0.66);
}

.temp {
	white-space: nowrap;
}

.dark h2, .dark h3, .dark .temp, .dark .date {
	text-shadow: 0 0 1px rgb(50,50,50);
}

.entry {
	display: flex;
	flex-direction: column;
	padding-right: 40px;
	text-align: center;
	min-width: 100px;
	max-width: 160px;
}

.entry.now {
	flex-direction: row;
	min-width: 180px;
	max-width: 240px;
	justify-content: center;
}

.entry.now .temp {
	font-size: 5rem;
	line-height: 1.5;
	padding-left: 1rem;
	text-shadow: none;
}

.dark .entry.now .temp {
	-webkit-text-stroke: 1px rgb(100,100,100);
	text-stroke: 1px rgb(100,100,100);
}

.entry .wi {
	font-size: 3rem;
	line-height: 1.5;
	padding: 15px 0;
}

.entry.now .wi {
	font-size: 5rem;
	padding: 0;
}

.dark .entry .wi {
	-webkit-text-stroke: 1px rgb(100,100,100);
	text-stroke: 1px rgb(100,100,100);
}