/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}


/*
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 0.11.3
*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
ol,ul {list-style:none;}
caption,th {text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;}
q:before,q:after{content:'';}




* {
	font-family: "Alverata", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
	font-size: 16px;
	line-height: 1.4rem;
	color: #291e1e;
}


p {
	margin-bottom: 1rem;
}

a {
	color: #7d3324;
}

img {
	max-width: 100%;
}

html {
/* 	outline: 1px solid red; */
	
	max-width: 80ch;
}

body {
/* 	outline: 1px solid blue; */

	margin: 2ch;
}

header {
/* 	outline: 1px solid darkgrey; */
	
	margin-bottom: 2ch;
}

nav {
	margin: 2ch 0;
}

main {
/* 	outline: 1px solid darkmagenta; */
}


header a {
	text-decoration: none;
}

header img {
	width: 150px;
}


nav  {
	display: flex;
	gap: 1ch;
}

nav a {
	text-decoration: none;
}

notes-list,
note-item,
note-date,
note-title,
note-data {
	display: block;
}

note-item {
	margin-bottom: 2rem;
	display: flex;
	flex-direction: column;
	gap: .5ch;
}

note-date {
	color: #666;
	font-size: .8rem;
}

