:root {
	--main-bg-color: linen;
	--main-text-color: #111;
	--second-bg-color: #492400;
	--second-text-color: #B1ACA8;

	--flame: #e25822;
}

html {
	font-size: 2.2vw;
}

h1,h2,h3,h4 {
	margin: 0;
	margin-top: 0.5em;
	margin-block-end: 0;
}

p {
	margin-top: 0em ;
	margin-bottom: 0.5em;
}

body {
	font-family: serif;
	color: var(--main-text-color);
	display: block;
	background-image: conic-gradient(#72281E 1deg, #2F2537 120deg, #F2D87B 240deg,#72281E 359deg);
	background-attachment: fixed;
	border: 1rem ridge #61472D;
	max-width: 70rem;
}

@media only screen and (min-width: 768px) {
  body {
	width: calc(80% - 1rem);
	min-height: 200px;
	margin: 5% auto;
  }
}

conic-gradient(red 45deg, yellow 90deg, green 210deg)
{"Liver Organ":"72281E","Dark Purple":"2F2537","Jasmine":"F2D87B","Dark Brown":"61472D","Xiketic":"150C0F","Bone":"CFD1B9","Blue Yonder":"5F76B1"}


header, footer {
	background: gainsboro;
	padding: 0.5rem;
}

hr {
	border: 0;
	height: 1px;
	background: #333;
	background-image: linear-gradient(to right, #ccc, #333, #ccc);
}

main {
	background-color: var(--main-bg-color);
	margin: 0;
}

header, footer, main {
	padding: 1px 1rem 1px 1rem;
}

a:link    { color: blue; text-decoration: none;      }
a:hover   { color: blue; text-decoration: underline; }
a:visited { color: blue;                             }

h1 a { color: inherit !important; font-family: serif; }
h2 a { color: inherit !important }
h3 a { color: inherit !important }
h4 a { color: inherit !important }
h5 a { color: inherit !important }
h6 a { color: inherit !important }

time {
	font-style: italic;
	color: Maroon;
}

#menu li {
	display: inline;
}

.no-margin {
	margin: 0;
}

blockquote {
  background: var(--second-bg-color);
  border-left: 10px solid var(--second-text-color);
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
	color: var(--second-text-color);
	
}
blockquote:before {
  color: var(--main-bg-color);
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
}

/* make asides float */
aside {
    width: 40%;
    padding-left: .5rem;
    margin-left: .5rem;
    float: right;
    box-shadow: inset 5px 0 5px -5px #29627e;
    font-style: italic;
    color: #660000;
}

progress {
	max-width: 7rem;
	background-color: #100;
	appearance: none;
	background-color: #eee;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
	border: none;
}

/* for wide screens */
@media all and (min-width:1000px) {
    aside {
        width: calc(2.5rem * 7);
    }

    html {
		font-size: 20px;
	}
}

/* for thin screens */
@media all and (max-width:550px) {
    /* make asides pop in when thin enough */
	aside {
		float: inherit;
		position: inherit;
		width: 100%;
		text-align: left;
		background: #fefefe;
		padding: 0.3rem 0.5rem;
		width: 90%;
		border: 1px solid #ccc;
		border-left: 3px solid #ccc;
    }

    aside > p:last-child {
        margin-bottom: 0;
    }

    progress {
		max-width:7rem;
	}
}

/* for thin screens */
@media all and (max-width:660px) {
    html {
		font-size:15px;
	}
}
