/* CSS Document */
html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: Montserrat, system-ui, sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #38344d;
}
main {
	flex: 1;
	padding: 0 20px;
}
header {
	background: #f4f2ff;
	padding: 1em;
	text-align: center;
}
footer {
	background: #f4f2ff;
	padding: 1em;
	text-align: center;
}
h1 {
	font-family: Montserrat, system-ui, sans-serif;
	font-weight: 800;
	font-size: 36px;
	color: #33257a;
	margin: 0 0 15px 0;
}
h2 {
	font-family: Montserrat, system-ui, sans-serif;
	font-weight: 800;
	font-size: 24px;
	color: #5342a6;
	margin: 0 0 10px 0;
}
h3 {
	font-family: Montserrat, system-ui, sans-serif;
	font-weight: 700;
	font-size: 21px;
	color: #8d7fd4;
	margin: 0 0 5px 0;
}
h4 {
	font-family: Montserrat, system-ui, sans-serif;
	font-weight: 700;
	font-size: 18px;
	color: #8d7fd4;
	margin: 0 0 10px 0;
}
p {
	margin: 0 0 10px 0;
}
a, a:visited, a:active {
	color: #33257a; /* pick your color */
}
a:hover {
	color: black;
	font-weight: 600;
}
.box {
	background: #8d7fd4;
}
.date-box {
	width: 80px;
	border-radius: 13px;
	overflow: hidden; /* Ensures children are clipped to rounded corners */
	/*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);*/
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	cursor: pointer;
}
.date-top {
	background: #5342a6;
	color: white;
	text-align: center;
	font-weight: 700;
	padding: 5px;
	font-size: 18px;
}
.date-bottom {
	background: #8d7fd4;
	color: white;
	text-align: center;
	font-size: 24px;
	font-weight: 800;
	padding: 10px;
}