
* {
margin: 0;
padding: 0;
box-sizing: border-box;
color: white;
font-weight: normal;
line-height: normal;
list-style: none;
text-decoration: none;
image-rendering:pixelated;
}

/*--FONTS--*/
@font-face {
    font-family: "plain11";
    src: url("assets/fonts/RuneScape-Plain-11.ttf") format("truetype");}
@font-face {
    font-family: "plain12";
    src: url("assets/fonts/RuneScape-Plain-12.ttf") format("truetype");}
@font-face {
    font-family: "quill8";
    src: url("assets/fonts/RuneScape-Quill-8.ttf") format("truetype");}
@font-face {
    font-family: "quill";
    src: url("assets/fonts/RuneScape-Quill.ttf") format("truetype");}

/*--BORDERS--*/
.paper-border {
border: 10px solid;
border-image: url("creations/assets/paperborder.png")
    10 / 10px / 0 round;}

.med-border {
border: 27px solid;
border-image: url("creations/assets/medborder.png") 
    18 / 27px / 0 round;}

.sunflower-sideborder {
border: 24px solid;
border-image: url("creations/assets/sunflowersideborder.png") 
    12 / 24px / 0 round;
border-top: none;
border-bottom: none;}
.sunflower-sideborder.left {
border-right: none;}
.sunflower-sideborder.right {
border-left: none;}

/*--HEADERS--*/
h1 {
font-family: "quill";
font-size: 5rem;
color: brown;}

h2 {
font-family: "quill";
font-size: 3rem;
color:coral;}

h3 {
font-size: 1.5rem;
color: gold;}

/*--TEXT STUFF--*/
p {
text-align: justify;
display: flow-root;
margin: .5rem 0;}

a {
color: red;}

a:hover {
background-color: white;
color: black;}

.illustrated {
height: 5.5rem;
float: left;
margin-right: .25rem;
}

.bigletter {
float: left; 
font-size: 4rem; 
line-height: 2.5rem;
font-family: "quill";
color: gold;
}

/*--CONTENT--*/
body {
padding: .5rem;
font-family: "plain11";
font-size: 2rem;
background-color: black;}

main {
width: 1000px;
margin: auto;
padding: .5rem;
border: 10px solid;
border-image: url("creations/assets/paperborder.png")
    5 / 10px / 0 round;}

div {
display: flow-root;}

ol, ul {
margin: .5rem 0;}

ol {
margin: auto;
width: fit-content;
text-align: center;}

ul li {
list-style: "+" outside;
margin-left: 1rem;}

/*--IMAGE STUFF--*/
img {
max-width: 100%;}

.imgdesc {
text-align: center;
padding: 1rem;
width: 25%;}
.imgdesc img {
width: 100%;}

.right {
float: right;}

.left {
float: left;}




@media screen and (orientation:portrait) {
main{width:auto;}
.imgdesc{display:block; width:75%; max-width:100%; float:none; margin:1rem auto;}
}