
* { box-sizing: border-box; }

html{ background-image: url(../images/mdb_girl.png);
	background-size: 50%;
	}

body{ width: 850px;
	position: relative;
	font-family:"griun";
    font-size: 0.9em;
	overflow-x: hidden;
	margin: auto;
	}
    
nav{ 
	border: rgb(35, 35, 35) solid 2px;
    height: 50px;
	border-radius: 9px;
    background-color: rgba(125, 98, 81, 80%);
	background-blend-mode: screen;
	background-size: 80%;      
    filter: drop-shadow(1px 1px 5px);
    text-align: center;
    font-weight: bold;
    margin: 10px auto;
    }
    
    
nav ul{ display: flex;
    flex-flow: row nowrap;
    gap: 1em;
    list-style-type: none;
    padding-left: 0;
    align-items: center;
    justify-content: center;
    height: 17px;
    font-size: 14px;
    }
nav li{
    background-color: rgb(255,255,255, 80%); 
    padding: 5px;
    border-radius: 20px;

    }
    
.navBtn{ color: inherit;
    text-decoration: none;
    }
.navBtn:hover{ text-decoration: underline; 
    cursor: pointer;
    } 

a{
    color: black;
    text-decoration: none;
}

a:hover{
    text-decoration: underline;
}
main{
	border: rgb(35, 35, 35) solid 2px;
	border-radius: 9px;
    background-color: rgb(125, 98, 81);
	background-blend-mode: screen;
	background-size: 80%;    
    filter: drop-shadow(1px 1px 5px);
	padding: 20px;
	margin: auto;
    height: 700px;
	}

.wrapper{
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: 100%;
    }

.page{ margin-top: 0px; 
    padding: 12px;
    border-radius: 9px; 
    width: 100%;
    }
.page, .entry{ display: none; }
.defaultOpen{ display: block; }

/* BLOG */
.entry{ margin-top: 0px; 
    padding: 10px 20px;
    background-image: url(../images/linednotebookpaper.jpg);
    background-size: 95%;
    border-radius: 9px;
    width: 100%;
    height: 100%;
    overflow: auto;
    }

sidebar{
    background-image: url(../images/linednotebookpaper.jpg);
    background-size: 600px;
    border-radius: 9px; 
    width:25%;
    font-size: 90%;
    margin-right: 15px;
    }
sidebar ul{
    padding-left: 20px;
    }
sidebar li.diary{
    list-style-image: url(../images/pix_star1-blue2.gif)
    }
sidebar li.guide{
    list-style-image: url(../images/pix_star1-yellow2.gif)
    }
sidebar img{ 
    width:150px;
    position: absolute;
    bottom:50px; 
    left: 50px;
    }

article{ width: 75%; }

header img{ position: relative;
	top: -70px; 
	text-align: center;
	margin: -12.5px;
	margin-bottom: -75px;
	}
    
.entrystamp img{ 
    width:300px;
    margin: 5px;
    }    
       
.entryDate mark{
    color: white;
    background-color: black;
    padding: 0 4px; 
    }    

footer{ text-align: center; 
    color:white;
	margin: auto; 
	}
footer p{ font-size: 0.7em;
	width: 35%;
	margin: 10px auto;
	}

/* EZGIF TUTORIAL */
.btn.small {
  padding: 2px 9px;
  font-size: 11px;
}
.btn.primary {
  color: #fff;
  background: #0064cd;
  text-shadow: 0 -1px 0 #333;
  border-color: #0064cd #0064cd #003f81;
}
.btn {
  font-size: 13px;
  cursor: pointer;
  display: inline-block;
  padding: 7px 16px;
  text-shadow: 0 1px 1px #ccc;
  color: #333;
  border: 1px solid #ccc;
    border-top-color: rgb(204, 204, 204);
    border-right-color: rgb(204, 204, 204);
    border-bottom-color: rgb(204, 204, 204);
    border-left-color: rgb(204, 204, 204);
  border-bottom-color: #bbb;
  border-radius: 3px;
  background: #eee;
  margin-right: 4px;
  box-shadow: inset 0 1px rgba(255,255,255,.2),0 1px 2px rgba(0,0,0,5%);
  transition: .1s linear all;
  font-family: -apple-system,BlinkMacSystemFont,segoe ui,Roboto,Oxygen,Ubuntu,Cantarell,sans-serif;
  line-height: 1.6;
}

/* PLUSHIE DIARY */
#plushiediary{ 
    background-image: url(../images/linednotebookpaper.jpg);
    background-size: 95%;
    overflow: auto;
    margin: 12px;
    }

.plushie{
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    flex-direction: row-reverse;
    gap: 1.5em;
    }
.plushie > h3{ margin: 0; }

.plushieImg{
    border-width: 9px; 
    border-style: solid; 
    border-image: url("../images/laceborder.png") 7 round;
    max-height: 200px;
    }
.plushieText{ text-align: justify; }