/* chemofinito stylesheet*/

/* Variables */

html {
	--text-color: #606060;
	--border-color: #D0C4DF;
	--accent-color: #C792DF;
	--link-color: #DCABDF;
}

/* Base styling */

html {
	height: auto;
	min-height: 100%;
	font-size: 18px;
	border: 20px solid var(--border-color);
}
body {
	margin: 5% auto;
	text-align: center;
}
/* If the screen size wider than this, set this typography */
@media screen and (min-width: 651px) {
	body {font-size: 100%; width: 85%;}
}
/* If the screen size is skinnier than this, set this typography */
@media screen and (max-width: 650px) {
	body {font-size: 90%; margin: 4% 6%;}
}
hr {
	border-width: 0;
	border-top: 1px solid var(--text-color);
	width: 30%;
	margin-top: 5%;
	margin-bottom: 5%;
}

img {	
	border: 10px solid var(--border-color);
	border-radius: 12px;
	width: 65%;
	height: 65%;
	object-fit: contain;
	margin: 10%;
}

/* Typography styling */

h1 {
	font-size: 550%;
	color: var(--accent-color);
	font-family: "Parisienne", cursive;
	font-weight: 600;
	font-style: normal;
	padding-top: 8%;
	line-height: 125%;
}
h2 {
	font-size: 175%;
	font-family: sans-serif;
	padding-top: 8%;
	font-weight: 600;
	color: var(--text-color);
}
p {
 	font-size: 145%;
  	font-family: sans-serif;
	line-height: 165%;  
}
p, blockquote {
	color: var(--text-color);
}
blockquote {
	border-left: 1px solid var(--accent-color);
	margin-left: 3%;
	padding-left: 3%;
}
p.top {
	font-size: 215%;
	color: var(--accent-color);
	font-family: "Scope One", serif;
	font-weight: 400;
	font-style: normal;
	line-height: 155%;
}
pre {
	display: block;
	font-family: monospace;
	line-height: 105%;
}
ul {
	color: var(--text-color);
	list-style-type: circle;
}
ol {
	color: var(--text-color);
}

/* Hyperlink styling */

a, a:link, a:visited, a:hover, a:active {
	color: var(--accent-color);
	text-decoration: none;
}

a.button {
	font-family: "Scope One", serif;
	width: 45%;
	font-weight: 1000;
	font-size: 165%;
	background: var(--link-color);
	border-radius: 10px;
	padding: 4%;
	border: 8px solid var(--accent-color);
	color: white;
	display: inline-block;
	letter-spacing: 12%;
	margin-top: 7%;
	margin-bottom: 7%;
}
