/* 
******************************************
******************************************
****                                  ****
****                                  ****
****                                  ****
****                                  ****
****    	90's Style Website          ****
****     		Woohoo!                   ****
****                                  ****
****                                  ****
****                                  ****
****                                  ****
******************************************
******************************************

/* 

	Overall page layouts and overarching styles

*/

body {
	padding: 0px; margin: 0px;
	font-family: 'Courier New';
  overflow-x: hidden;
  cursor: url(images/mushroom.png) 2 2, pointer;
}

#main-body {
  background: url('images/leaf-bf.png') repeat;
  background-color: #C1D7AE;
}

/*#wrapper {*/

/*}*/

#middle-wrapper {
  display: inline-flex;
  width: 100%;
}


header {
	padding: 10px;
	display: inline-flex;
	justify-content: space-between;
	width: 100%;
}

header h1 {
  color: white; 
  background-color: #C1D7AE;
}

nav {
	float: left;
	min-width: 200px;
	max-width: 250px;
	padding: 0px 10px;
  background-color: #ECDCB0;
  border-radius: 25px;
  margin: 10px;
  border: 10px solid #ECDCB0;
}

#iframe { 
  width: 50%;
  border: 10px solid #ECDCB0;
	padding: 5px;
	height: 400px;
	overflow: scroll;
		background-color: #ffffff;
  border-radius: 25px;
}

.page-content {
	padding: 5px;
	background-color: #ffffff;
}

#home-img {
  width: 100px;
  float: right;
}

/* 

	General styling	

*/

a {
	color: blue;
}

a:hover, a:active {
		color: yellow;
	}
	
li {
  list-style-image: url('images/mushroom.png');
}

/*

Gallery

*/

.gallery {
  width: 95%;
  margin: auto;
}

.gallery td {
  height: 200px;
  width: 150px;
  border: 1px solid grey;
  margin: 5px;
}


.box-container {
  display: inline-flex; 
  justify-content: center;
  width: 100%;
}

.scroll-box {
  overflow-y: scroll;
  height: 300px;
}

#first-box div {
  width: 230px;
}

#first-box div, #second-box div {
    background-color: #C1D7AE;
}

#third-box {
  border: none;
}

.box {
 margin: 2px;
 padding: 10px;
 border-radius: 25px;
}

#box-container ul li {
 list-style-type: none; 
}

#sticker-box {
 width: 100%; 
}

.label {  
 font-weight: bold;
}

.emoji-train {
  text-align: center;
}

.done::after {
      content: "✅ "; 
}

/* Blog */
.blog-title {
  margin-bottom: 0;
  text-decoration: underline;
}

.date {
  font-size: 0.8em;
  font-weight: bold;
  color: grey;
}

.blog-icon {
 float: left;
 width: 100px;
 height: 100px;
 background-color: black;
 margin: 3px;
}

.mood-box {
  float: left;
  padding: 3px;
  width: 100%;
  background-color: #C1D7AE;
  margin: 4px;
}

.mood-box li {
 list-style: none; 
}

.blog-content {
  line-height: 1.5;
  font-size: 0.9em;
}

/* 
  Scrollbar
*/

*::-webkit-scrollbar {
  width: 0.2em;
}

*::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}
 
*::-webkit-scrollbar-thumb {
  background-color: green;
  outline: 1px solid slategrey;
}


/*
  Responsiveness 
*/

@media only screen and (max-width: 600px) {
  #middle-wrapper {
  display: block;
  width: 100%;
  margin: auto;
}

  header h1 {
    font-size: 1.5em;
  }

  nav {
    float: none;
    max-width: 100%;
    min-width: 90%;
	  padding: 0px 10px;
	  max-height: 50px;
  }
  
  nav ul {
    margin: auto 0px; padding: 0px;
  }
  
  nav li {
    display: inline;
    padding: 0; 
  }
  
   .external-link, .project-link, .navigation-title {
     display: none;
   }
  
  #iframe { 
    width: 90%;
    margin: auto;
    height: 60vh;
    overflow: visible;
  }
  
  .box-container {
    display: block;
  }
  
  #about-me-box, #news-box, #sticker-box {
    width: 80%;
    margin: auto;
    margin-bottom: 10px;
  }
  
  }













