* { box-sizing: border-box; }
body {
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: none;
    -moz-osx-font-smoothing: grayscale;
	font-family: 'dsfont', Fallback, 'Times New Roman', Times, serif;
	padding: 12px;
}
/* @font-face {
	font-family: 'dsfont';
	src: url('nintendo-ds-bios.woff2') format('woff2'),
		 url('nintendo-ds-bios.woff') format('woff'),
		 url('nintendo-ds-bios.ttf') format('truetype');
} */
p {
	/* text color */
	color: #5c5a5a;
}
h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
	font-weight: initial;
}
h2 {
	font-size: 22px;
	margin-bottom: 1em;
}
a {
	/* links color */
	color: #000000;
}
#days {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-gap: .75em;
	max-width: 1000px;
}
#days a {
	border: 1px solid rgb(130, 130, 130);
	/* border-radius: 8%; */
	height: 100px;
	padding: .75em;
	/* number color */
	color: #000000;
	text-decoration: none;
	/* day color *
    /* background: #eeebeb; */
}
#days a[href]::after {
	content: '';
	/* dot color */
	background: #656565;
    /* #c3d39c; */
	width: 10px;
	height: 10px;
	margin-left: 8px;
	border-radius: 100%;
	display: inline-block;
}
#days a:hover {
	/* day hover color */ 
	background: #e6e6e6;
    ;
	/* number color hover */ 
	color: #ffffff;
	}
.return {
	border: 1px solid black;
	padding: 8px;
	/* border-radius: 5px; */
	color: black;
	font-family: 'dsfont', Fallback, 'Times New Roman', Times, serif;
	text-decoration: none;
}	
.return:hover {
	background: #f2f2f2;
	color: black;
}
.title {
    text-decoration: none;
}
.title:hover {
    text-decoration: underline;
}