* { 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: 35px;
}

@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');
  }
@font-face {
	font-family: 'dsfont';
	src: url('nintendo-ds-bios2') format('woff2'),
		 url('nintendo-ds-bios.woff') format('woff'),
		 url('nintendo-ds-bios.ttf') format('truetype');
  }
img {
	max-width: 700px;
	width: 100%;
}
p {
	/* text color */
	  color: #5c5a5a;
	}
	h1, h2, h3, h4 {
		margin: 0;
		padding: 0;
		font-weight: initial;
	}
	h2 {
		font-size: 25px;
		margin-bottom: 1em;
	}
	a {
	/* links color */
		color: #5c5a5a;
	}
	#days {
		display: grid;
		grid-template-columns: repeat(7, 1fr);
		grid-gap: .75em;
		max-width: 1000px;
	}
	#days a {
		border: 1px solid #a7c8eb;
		height: 100px;
		padding: .75em;
	/* number color */
		color: #5c5a5a;
		text-decoration: none;
	/* day color */
		/* background: #eeebeb; */
	}
	#days a[href]::after {
		content: '';
	/* dot color */
		background: #fffc67;
		width: 10px;
		height: 10px;
		margin-left: 8px;
		border-radius: 100%;
		display: inline-block;
	}
	#days a:hover {
	/* day hover color */ 
		background: #23284d;
		border-radius: 8%;
	/* 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;
	}