/* ============================================
 * THE BELL TREE NEW YEAR'S ADVENT CALENDAR
 * 2025-2026 Edition
 * ============================================
 *
 * TABLE OF CONTENTS:
 * 1. CSS Custom Properties (Variables)
 * 2. CSS Reset (Meyer Reset)
 * 3. Font Definitions
 * 4. Base & Layout Styles
 * 5. Background & Video Styles
 * 6. Header Styles & Animations
 * 7. Advent Calendar Frame
 * 8. Door States & Triple Frame Effects
 * 9. Door Pulse Animations
 * 10. Hover Effects
 * 11. Modal Styling
 * 12. Prize/Button Styling
 * 13. Utility Animations
 * 14. Media Queries
 * ============================================ */

/* ============================================
 * 1. CSS CUSTOM PROPERTIES
 * ============================================ */

:root {
	/* Primary Colors */
	--color-cyan: #00e6ff;
	--color-magenta: #ff00c8;
	--color-accent-blend: #7f73e3;

	/* RGB Values (for rgba usage) */
	--cyan-rgb: 0, 230, 255;
	--magenta-rgb: 255, 0, 200;

	/* Background Colors */
	--bg-dark: rgb(15 5 25 / 75%);
	--bg-dark-opaque: rgb(15, 5, 25, 0.95);
	--bg-modal: rgb(15 5 25 / 90%);
	--bg-fallback: #1a1a2e;

	/* Neutral Colors */
	--color-grey: rgb(100, 100, 100);
	--color-grey-text: rgb(150, 150, 150);
	--color-white: #ffffff;

	/* Opacity Levels */
	--opacity-dim: 0.3;
	--opacity-medium: 0.5;
	--opacity-bright: 0.7;
	--opacity-full: 1;

	/* Glow Sizes */
	--glow-subtle: 8px;
	--glow-medium: 15px;
	--glow-strong: 25px;
	--glow-intense: 40px;

	/* Animation Timings */
	--pulse-slow: 4s;
	--pulse-medium: 3.5s;
	--pulse-fast: 3s;
	--transition: 0.3s ease;

	/* Frame Sizing */
	--frame-gap-1: 2px;
	--frame-gap-2: 4px;
	--frame-gap-3: 6px;
	--frame-gap-4: 8px;
	--frame-gap-5: 10px;
}

/* ============================================
 * 2. CSS RESET (MEYER RESET)
 * ============================================ */

/* 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;
}

/* ============================================
 * 3. FONT DEFINITIONS
 * ============================================ */

@font-face {
	font-family: 'FinkHeavy';
	src: url('FinkHeavy.eot');
	src: url('FinkHeavy.eot?#iefix') format('embedded-opentype'),
		url('FinkHeavy.woff2') format('woff2'),
		url('FinkHeavy.woff') format('woff'),
		url('FinkHeavy.svg#FinkHeavy') format('svg');
	font-weight: 400;
	font-style: normal;
	font-stretch: normal;
	unicode-range: U+0020-00FE;
}

/* ============================================
 * 4. BASE & LAYOUT STYLES
 * ============================================ */

html {
	background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(newyears_newhorizons_bg.jpg);
	background-size: cover, cover;
	background-position: 50%, 50%;
	background-repeat: no-repeat;
	background-color: var(--bg-fallback);
}

body.center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	min-height: 100vh;
	padding: 0px 10px;
}

header {
	margin: 20px auto 0px auto;
}

header img {
	padding: 0px;
}

img {
	margin: 0 auto;
	display: block;
	padding: 15px 0px 15px 0px;
	max-width: 100%;
}

section, footer {
	margin: 10px auto 10px auto;
	color: var(--color-white);
	text-shadow: #000000a1 1px 1px 4px;
}

p {
	line-height: 29px;
	font-size: 17px;
	margin-bottom: 20px;
	font-family: 'Lato', sans-serif;
}

strong {
	font-weight: bold;
}

h3 {
	font-size: 80px;
	text-align: center;
	font-family: "Bubblegum Sans", sans-serif;
}

/* ============================================
 * 5. BACKGROUND & VIDEO STYLES
 * ============================================ */

#bg-video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	object-fit: cover;
	object-position: center;
}

/* ============================================
 * 6. HEADER STYLES & ANIMATIONS
 * ============================================ */

@keyframes headerGlow {
	0%, 100% {
		text-shadow:
			0 0 10px rgba(0, 230, 255, 0.7),
			0 0 20px rgba(0, 230, 255, 0.5),
			0 0 30px rgba(0, 230, 255, 0.3);
	}
	50% {
		text-shadow:
			0 0 15px rgba(0, 230, 255, 0.9),
			0 0 30px rgba(0, 230, 255, 0.7),
			0 0 45px rgba(0, 230, 255, 0.5);
	}
}

@keyframes subheaderGlow {
	0%, 100% {
		text-shadow:
			0 0 8px rgba(255, 0, 200, 0.6),
			0 0 16px rgba(255, 0, 200, 0.4),
			0 0 24px rgba(255, 0, 200, 0.2);
	}
	50% {
		text-shadow:
			0 0 12px rgba(255, 0, 200, 0.8),
			0 0 24px rgba(255, 0, 200, 0.6),
			0 0 36px rgba(255, 0, 200, 0.4);
	}
}

header h1 {
	font-family: "Bubblegum Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
	color: var(--color-white);
	font-size: 60px;
	text-align: center;
	animation: headerGlow 4s ease-in-out infinite;
}

header h2 {
	font-family: "Lato", sans-serif;
	font-weight: 700;
	font-style: normal;
	color: var(--color-white);
	font-size: 55px;
	text-align: center;
	letter-spacing: 5px;
	animation: subheaderGlow 3.5s ease-in-out infinite;
}

/* ============================================
 * 7. ADVENT CALENDAR FRAME
 * ============================================ */

.adventcalendarframe {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 1300px;
}

.adventcalendarframe li {
	padding: 20px 10px 5px 10px;
	background: var(--bg-dark);
	border-radius: 25px;
	min-width: 100px;
	transition: all var(--transition);
}

.adventcalendarframe a {
	text-decoration: none;
	margin: 13px;
}

.adventcalendarframe a.doordone {
	color: grey;
	text-decoration: none;
}

.adventcalendarframe h3 {
	color: var(--color-cyan);
	transition: all var(--transition);
}

.adventcalendarframe a:hover h3,
.adventcalendarframe .doorcurrent h3 {
	color: var(--color-magenta);
}

/* ============================================
 * 8. DOOR STATES & TRIPLE FRAME EFFECTS
 * ============================================ */

/* Closed Doors - Dim cyan triple frame */
.adventcalendarframe .doorclosed {
	border: 2px solid rgba(var(--cyan-rgb), var(--opacity-dim));
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-2) rgba(var(--cyan-rgb), 0.25),
		inset 0 0 0 var(--frame-gap-3) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-4) rgba(var(--cyan-rgb), 0.2),
		0 0 var(--glow-subtle) rgba(var(--cyan-rgb), 0.15);
	animation: pulseClosedSubtle var(--pulse-slow) ease-in-out infinite;
}

.adventcalendarframe .doorclosed h3 {
	color: rgba(var(--cyan-rgb), var(--opacity-medium));
	text-shadow: 0 0 5px rgba(var(--cyan-rgb), var(--opacity-dim));
}

.adventcalendarframe .doorclosed img {
	filter: grayscale(90%);
}

/* Support shake animation on closed doors */
.adventcalendarframe .doorclosed.shake {
	animation: shake 0.8s both, pulseClosedSubtle var(--pulse-slow) ease-in-out infinite;
}

/* Open Doors - Magenta triple frame */
.adventcalendarframe .dooropen {
	border: 2px solid rgba(var(--magenta-rgb), var(--opacity-bright));
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-2) rgba(var(--magenta-rgb), 0.5),
		inset 0 0 0 var(--frame-gap-3) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-4) rgba(var(--magenta-rgb), 0.4),
		0 0 12px rgba(var(--magenta-rgb), 0.4),
		0 0 20px rgba(var(--magenta-rgb), 0.2);
	animation: pulseOpenSubtle var(--pulse-medium) ease-in-out infinite;
}

.adventcalendarframe .dooropen h3 {
	color: var(--color-magenta);
	text-shadow: 0 0 var(--glow-subtle) rgba(var(--magenta-rgb), 0.6);
}

.adventcalendarframe .dooropen img,
.adventcalendarframe .doorcurrent img {
	filter: grayscale(0%);
}

/* Current Door - Bright magenta/cyan triple frame */
.adventcalendarframe .doorcurrent {
	border: 3px solid var(--color-magenta);
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 5px rgba(var(--cyan-rgb), var(--opacity-bright)),
		inset 0 0 0 7px var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-5) rgba(var(--magenta-rgb), 0.5),
		0 0 var(--glow-medium) rgba(var(--magenta-rgb), 0.6),
		0 0 var(--glow-strong) rgba(var(--magenta-rgb), var(--opacity-dim));
	animation: pulseCurrentSubtle var(--pulse-fast) ease-in-out infinite;
}

.adventcalendarframe .doorcurrent h3 {
	color: var(--color-magenta);
	text-shadow:
		0 0 10px rgba(var(--magenta-rgb), var(--opacity-bright)),
		0 0 20px rgba(var(--magenta-rgb), 0.4);
}

/* Done State - Grey triple frame */
.adventcalendarframe a.doordone li {
	border: 2px solid rgba(var(--color-grey), var(--opacity-dim));
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-2) rgba(100, 100, 100, 0.25),
		inset 0 0 0 var(--frame-gap-3) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-4) rgba(100, 100, 100, 0.2),
		0 0 5px rgba(100, 100, 100, 0.15);
}

.adventcalendarframe a.doordone h3 {
	color: rgba(var(--color-grey-text), 0.4);
	text-shadow: 0 0 3px rgba(var(--color-grey-text), 0.2);
}

.adventcalendarframe a.doordone img {
	filter: grayscale(90%);
}

/* ============================================
 * 9. DOOR PULSE ANIMATIONS
 * ============================================ */

@keyframes pulseClosedSubtle {
	0%, 100% {
		filter: drop-shadow(0 0 var(--glow-subtle) rgba(var(--cyan-rgb), 0.15));
	}
	50% {
		filter: drop-shadow(0 0 12px rgba(var(--cyan-rgb), 0.25));
	}
}

@keyframes pulseOpenSubtle {
	0%, 100% {
		filter: drop-shadow(0 0 12px rgba(var(--magenta-rgb), var(--opacity-dim)));
	}
	50% {
		filter: drop-shadow(0 0 18px rgba(var(--magenta-rgb), 0.45));
	}
}

@keyframes pulseCurrentSubtle {
	0%, 100% {
		filter: drop-shadow(0 0 var(--glow-medium) rgba(var(--magenta-rgb), 0.6));
	}
	50% {
		filter: drop-shadow(0 0 var(--glow-strong) rgba(var(--magenta-rgb), 0.8));
	}
}

/* ============================================
 * 10. HOVER EFFECTS
 * ============================================ */

/* Hover on closed doors - brighten triple frame */
.adventcalendarframe a:hover .doorclosed {
	border: 2px solid rgba(var(--cyan-rgb), var(--opacity-bright));
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-2) rgba(var(--cyan-rgb), 0.6),
		inset 0 0 0 var(--frame-gap-3) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-4) rgba(var(--cyan-rgb), var(--opacity-medium)),
		0 0 var(--glow-medium) rgba(var(--cyan-rgb), 0.4),
		0 0 var(--glow-strong) rgba(var(--cyan-rgb), 0.2);
}

.adventcalendarframe a:hover .doorclosed h3 {
	color: var(--color-cyan);
	text-shadow: 0 0 10px rgba(var(--cyan-rgb), 0.6);
}

/* Hover on open doors - intensify magenta triple frame */
.adventcalendarframe a:hover .dooropen {
	border: 2px solid var(--color-magenta);
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-2) rgba(var(--magenta-rgb), var(--opacity-bright)),
		inset 0 0 0 var(--frame-gap-3) var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-4) rgba(var(--magenta-rgb), 0.6),
		0 0 20px rgba(var(--magenta-rgb), 0.6),
		0 0 35px rgba(var(--magenta-rgb), 0.35);
}

.adventcalendarframe a:hover .dooropen h3 {
	color: var(--color-magenta);
	text-shadow: 0 0 12px rgba(var(--magenta-rgb), var(--opacity-bright));
}

/* Hover on current door - maximum intensity */
.adventcalendarframe a:hover .doorcurrent {
	border: 3px solid var(--color-magenta);
	box-shadow:
		inset 0 0 0 var(--frame-gap-1) var(--bg-dark-opaque),
		inset 0 0 0 5px var(--color-cyan),
		inset 0 0 0 7px var(--bg-dark-opaque),
		inset 0 0 0 var(--frame-gap-5) rgba(var(--magenta-rgb), var(--opacity-bright)),
		0 0 20px rgba(var(--magenta-rgb), 0.8),
		0 0 35px rgba(var(--magenta-rgb), var(--opacity-medium)),
		0 0 50px rgba(var(--magenta-rgb), 0.25);
}

.adventcalendarframe a:hover .doorcurrent h3 {
	text-shadow:
		0 0 var(--glow-medium) rgba(var(--magenta-rgb), 0.9),
		0 0 30px rgba(var(--magenta-rgb), 0.6);
}

/* ============================================
 * 11. MODAL STYLING
 * ============================================ */

.modal {
	padding: 30px;
	border-radius: 15px;
	max-width: 600px;
	margin: 0 auto;
	background: var(--bg-modal);
	border: 1px solid rgba(100, 100, 100, var(--opacity-dim));
	position: relative;
}

/* Top accent bar - cyan */
.modal::before {
	content: '';
	position: absolute;
	top: 0;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(var(--cyan-rgb), 0.8) 50%,
		transparent 100%);
	box-shadow: 0 0 var(--glow-subtle) rgba(var(--cyan-rgb), 0.6);
	animation: accentPulse var(--pulse-fast) ease-in-out infinite;
}

/* Bottom accent bar - magenta */
.modal::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 20%;
	right: 20%;
	height: 2px;
	background: linear-gradient(90deg,
		transparent 0%,
		rgba(var(--magenta-rgb), 0.8) 50%,
		transparent 100%);
	box-shadow: 0 0 var(--glow-subtle) rgba(var(--magenta-rgb), 0.6);
	animation: accentPulse var(--pulse-fast) ease-in-out infinite 1.5s;
}

@keyframes accentPulse {
	0%, 100% {
		opacity: var(--opacity-medium);
	}
	50% {
		opacity: var(--opacity-full);
	}
}

/* Prize text - neon styling */
.modal .prizetext,
p.prizetext {
	color: var(--color-white);
	text-shadow:
		0 0 10px rgba(var(--cyan-rgb), 0.6),
		0 0 20px rgba(var(--cyan-rgb), 0.4),
		0 0 30px rgba(var(--cyan-rgb), 0.2);
	font-weight: 700;
	text-align: center;
	font-size: 32px;
	line-height: 40px;
	margin-bottom: 20px;
}

/* Prize images */
.modal img {
	filter: drop-shadow(0 0 var(--glow-medium) rgba(var(--magenta-rgb), var(--opacity-medium)));
	transition: filter var(--transition);
}

.modal img:hover {
	filter: drop-shadow(0 0 var(--glow-strong) rgba(var(--magenta-rgb), var(--opacity-bright)));
}

img.done {
	filter: grayscale(90%);
}

/* ============================================
 * 12. PRIZE/BUTTON STYLING
 * ============================================ */

.prizebuttoncontainer {
	margin: auto;
	text-align: center;
	overflow: visible;
}

.modal .prizebutton,
a.prizebutton {
	background: linear-gradient(
		135deg,
		rgba(var(--cyan-rgb), 0.8) 0%,
		rgba(127, 115, 227, 0.8) 50%,
		rgba(var(--magenta-rgb), 0.8) 100%
	);
	background-clip: padding-box;
	box-shadow:
		0 0 20px rgba(127, 115, 227, var(--opacity-medium)),
		0 0 var(--glow-intense) rgba(127, 115, 227, var(--opacity-dim)),
		inset 0 0 20px rgba(255, 255, 255, 0.1);
	color: var(--color-white);
	text-shadow:
		0 0 var(--glow-subtle) rgba(0, 0, 0, 0.8),
		0 0 var(--glow-medium) rgba(255, 255, 255, var(--opacity-medium));
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	font-size: 28px;
	padding: 20px 40px;
	border-radius: 50px;
	display: inline-block;
	text-decoration: none;
	transition: all var(--transition);
	position: relative;
	border: none;
}

.modal .prizebutton:hover,
a.prizebutton:hover {
	background: linear-gradient(
		135deg,
		rgba(var(--cyan-rgb), var(--opacity-full)) 0%,
		rgba(127, 115, 227, var(--opacity-full)) 50%,
		rgba(var(--magenta-rgb), var(--opacity-full)) 100%
	);
	background-clip: padding-box;
	box-shadow:
		0 0 30px rgba(127, 115, 227, 0.8),
		0 0 50px rgba(127, 115, 227, var(--opacity-medium)),
		0 0 70px rgba(127, 115, 227, var(--opacity-dim)),
		inset 0 0 30px rgba(255, 255, 255, 0.2);
	text-shadow:
		0 0 10px rgba(0, 0, 0, var(--opacity-full)),
		0 0 20px rgba(255, 255, 255, var(--opacity-bright));
	transform: translateY(-2px);
}

.modal .prizebutton:active,
a.prizebutton:active {
	transform: translateY(0px);
}

a.prizebuttondone {
	background: grey!important;
	box-shadow: none!important;
}

a.prizebuttondone:hover {
	box-shadow: none!important;
}

/* Help button */
.modal .prizebuttonhelp,
label.prizebuttonhelp {
	background: linear-gradient(90deg, rgba(var(--cyan-rgb), var(--opacity-dim)), rgba(var(--magenta-rgb), var(--opacity-dim)));
	border: 2px solid rgba(200, 200, 200, 0.4);
	color: var(--color-white);
	padding: 5px 10px;
	border-radius: 5px;
	display: inline-block;
	margin: 10px;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	transition: all 0.25s ease;
	cursor: pointer;
	text-decoration: none;
}

.modal .prizebuttonhelp:hover,
label.prizebuttonhelp:hover {
	background: linear-gradient(90deg, rgba(var(--cyan-rgb), var(--opacity-medium)), rgba(var(--magenta-rgb), var(--opacity-medium)));
	box-shadow: 0 0 10px rgba(127, 115, 227, var(--opacity-medium));
}

/* Hide checkbox */
input[type=checkbox] {
	display: none;
}

#menu {
	display: none;
}

/* Show menu when invisible checkbox is checked */
input[type=checkbox]:checked ~ #menu {
	display: block;
}

/* Fine print text */
.modal .prizefineprint,
p.prizefineprint {
	color: rgba(255, 255, 255, 0.8);
	text-shadow: 0 0 5px rgba(var(--cyan-rgb), var(--opacity-dim));
	font-size: 14px;
	line-height: 22px;
	margin-top: 15px;
	padding: 15px;
	background: rgba(0, 0, 0, var(--opacity-dim));
	border-radius: 8px;
	border: 1px solid rgba(100, 100, 100, var(--opacity-dim));
	text-align: center;
}

p.nomar {
	margin-top: 0px;
	margin-bottom: 0px;
	text-align: center;
}

p.nomar a,
p.nomar a:visited {
	color: #14247b;
	font-weight: bold;
	text-decoration: none;
}

/* Modal navigation buttons */
a.previous-button,
a.next-button,
a.more-button {
	width: 49.5%;
	font-size: 30px;
	color: var(--color-white);
	background: #14247b;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 0px 10px 0px;
	font-family: sans-serif;
}

a.vote-button {
	width: 100%;
	font-size: 30px;
	color: var(--color-white);
	background: #131075;
	display: inline-block;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 0px 10px 0px;
	font-family: sans-serif;
}

/* ============================================
 * 13. UTILITY ANIMATIONS
 * ============================================ */

/* Zoom In Animation */
@keyframes zoomIn {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

.zoomIn {
	animation: zoomIn 1.8s both;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation: fadeInUp 1.8s both;
}

/* Shake Animation */
@keyframes shake {
	from, to {
		transform: translate3d(0, 0, 0);
	}
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-5px, 0, 0);
	}
	20%, 40%, 60%, 80% {
		transform: translate3d(5px, 0, 0);
	}
}

.shake {
	animation: shake 0.95s both;
}

/* ============================================
 * 14. MEDIA QUERIES
 * ============================================ */

/* Mobile Styles */
@media only screen and (max-width: 700px) {

	#bg-video {
		display: none;
	}

	.mobile-remove {
		display: none;
	}

	p {
		line-height: 24px;
		font-size: 15px;
		margin-bottom: 15px;
	}

	header h1 {
		font-size: 50px;
	}

	header h2 {
		font-size: 45px;
	}

	html {
		background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(newyears_newhorizons_bg_mobile.jpg);
	}

}

/* Large Screen Styles */
@media only screen and (min-width: 1600px) {

	header h1 {
		font-size: 70px;
	}

	header h2 {
		font-size: 60px;
	}

	.adventcalendarframe a {
		margin: 16px;
	}

}
