/* 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;
}
  
  
  
  * {
      -webkit-font-smoothing: antialiased;
      box-sizing:border-box;
    -moz-box-sizing:border-box; /* Firefox */
    -webkit-box-sizing:border-box; /* Safari */
  }


  /*///////////////////////////////////////////////////////////*/




body {
	/* background-color: white; */
	padding: 100px 40px 100px 40px;
	/* color: #000; */
	font-family: IBM Plex Sans;
	font-size: 32px;
}


h1 {
	/* display:none; */
	font-size: 24px;
	font-weight: 400;
	margin-bottom: 50px;
	text-align: center;
	padding: 0px 20px 20px 20px;
	line-height: 120%;
	/* font-family: Fraunces;*/
	 /* font-style: italic;  */
	 
}

.h1-occurrence {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 48px;
	font-weight: 900;
	white-space: nowrap;
	/* text-transform: uppercase; */
	line-height: 100%;
	margin: 20px 0px 6px 0px;
}

.h1-weekday {
	display: inline-block;
	font-size: 48px;
	font-weight: 900;
	line-height: 100%;
	margin: 0px 0px 16px 0;
}



.week-separator {
	margin-bottom: 40px;
	height: 2px;
	background-image: radial-gradient(circle, #555 1px, transparent 1px);
	background-size: 10px 2px;
	background-repeat: repeat-x;
	background-position: left center;
}

.day-group.is-sunday {
	margin-bottom: 40px;
}

.day-group {
	display: grid;
	grid-template-columns: 90px 1fr;
	grid-template-rows: auto auto;
	column-gap: 5px;
	margin-bottom: 40px;
}

.occurrence-count {
	grid-column: 1;
	grid-row: 2;
	align-self: baseline;
	padding: 4px 8px;
	border-radius: 10px;
	font-weight: 900;
	white-space: nowrap;
	justify-self: end;
}

.occurrence-suffix {
	vertical-align: top;
	font-size: 0.5em;
	line-height: 1.4;
	/* text-transform: uppercase; */
}

p.date {
	grid-column: 2;
	grid-row: 1;
	font-size: 16px;
	color: #555;
	padding-bottom: 3px;
	margin-left: 2px;
	/* text-transform: uppercase; */
}

p.weekday {
	grid-column: 2;
	grid-row: 2;
	align-self: baseline;
	font-weight: 900;
	/* text-transform: uppercase; */
}

.occurence-number {

}



.occurrence-1 {
	background-color: hsl(358, 51%, 65%);
	color: hsl(358, 51%, 21%);
}

.occurrence-2 {
	background-color: hsl(46, 61%, 56%);
	color: hsl(46, 61%, 20%);
}

.occurrence-3 {
	background-color: hsl(174, 88%, 38%);
	color: hsl(174, 88%, 12%);
}

.occurrence-4 {
	background-color: hsl(214, 88%, 67%);
	color: hsl(214, 88%, 20%);
}

.occurrence-5 {
	background-color: hsl(278, 38%, 65%);
	color: hsl(278, 38%, 15%);
}




/* .occurrence-day-1 {
	color: hsl(13, 100%, 34%);
}

.occurrence-day-2 {
	color: hsl(74, 100%, 24%);
}

.occurrence-day-3 {
	color: hsl(172, 100%, 17%);
}

.occurrence-day-4 {
	color: hsl(237, 100%, 27%);
}

.occurrence-day-5 {
	color: hsl(322, 100%, 19%);
} */
  



#theme-toggle {
	display:none;
	position: fixed;
	top: 24px;
	right: 40px;
	background: none;
	border: 1.5px solid #ccc;
	border-radius: 20px;
	padding: 6px 18px;
	font-size: 16px;
	font-weight: 600;
	color: #555;
	cursor: pointer;
	z-index: 100;
}

#theme-toggle:hover {
	border-color: #888;
	color: #000;
}

body[data-theme="dark"] #theme-toggle {
	border-color: #555;
	color: #aaa;
}

body[data-theme="dark"] #theme-toggle:hover {
	border-color: #aaa;
	color: #fff;
}

body[data-theme="light"] {
	background-color: #fff;
	color: #000;
}

body[data-theme="light"] p.date {
	color: #000;
}

body[data-theme="light"] p.weekday {
	color: #000;
}

body[data-theme="dark"] {
	background-color: #000;
	color: #fff;
}

body[data-theme="dark"] p.date {
	color: #aaa;
}

body[data-theme="dark"] .week-separator {
	background-image: radial-gradient(circle, #777 1px, transparent 1px);
}

body[data-theme="dark"] p.weekday {
	color: #fff;
}

body[data-theme="dark"] .occurrence-1 {
	background-color: hsl(358, 51%, 21%);
	color: hsl(358, 51%, 65%);
}

body[data-theme="dark"] .occurrence-2 {
	background-color: hsl(46, 61%, 20%);
	color: hsl(46, 61%, 56%);
}

body[data-theme="dark"] .occurrence-3 {
	background-color: hsl(174, 88%, 12%);
	color: hsl(174, 88%, 38%);
}

body[data-theme="dark"] .occurrence-4 {
	background-color: hsl(214, 88%, 20%);
	color: hsl(214, 88%, 67%);
}

body[data-theme="dark"] .occurrence-5 {
	background-color: hsl(278, 38%, 15%);
	color: hsl(278, 38%, 65%);
}



@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 800px) {

}

