/*  
#AEAB80;  ------*light dirt 
#8c8062;  ------*darker dirt 
#EFEEDA;  ------*lighter cream 
#7F5227;  ------*bold brown 
#496F5D;  ------*bold blue 
#26362E; ------*darker blue
#4E3218;  ------*darker brown 
#F3F6E0; ------*light yellow 
#CDEEE5;  ------*light blue
 */


html, body {
  margin:0;
 font-family: "Comic Sans MS", "Comic Sans", cursive;
  font-size:14px;
  background-color: #AEAB80;
  scrollbar-width: none;
}

.title-image img{
  margin: 0 auto;
  display: block;
}

.main-content{
  padding: 10px;
  margin: 70px 50px;
  text-align: center;
  background-color: #EFEEDA;
  border-radius: 5px;
}

.main-pack{
  height: auto;
  display: flex;
}

/* SIDEBAR */

.scroll-box{
  border: 4px solid #496F5D;
  border-radius: 5px;
  padding: 14px;
  width:18.2%;
  position: sticky;
  top: 5px;
  background-color: #CDEEE5;
  height: 335px;
  color: #26362E;
}

.icon img{
  height:150px;
  width:150px;
  transition: 0.5s;
}

.icon img:hover{
  width: 200px;
  cursor:grab;
}

.scroll-box .icon img:active{
  cursor:grabbing;
}

/* MAIN BAR */

.static-box{
  border: 4px solid #7F5227;
  border-radius: 5px ;
  padding: 14px;
  width:80%;
  background-color:#F3F6E0;
  right: 60px;
  position: sticky;
  display: flex;
  margin-left: 10px;
}

.main-box{
  width: 68%;
  color:#4E3218;
}

.side-content{
  display: block;
  width: 28%;
}

.fun-box {
	background: #CDEEE5;
	border: 2px solid #496F5D;
  border-radius: 5px;
  color: #26362E;
	margin-left: 10px;
	width: 310px;
	padding: 8px;
	height: 100px;
	overflow: auto;
	margin: 10px 13px;
  scrollbar-width: thin;
}

.fun-box:first-child{
  height: 200px;
}

/* fun box specials */
.width-200px img{
  width: 200px;
}

.width-100px img{
  width: 100px;
}

.line-hr{
	border-style: dashed;
	border-color: #7F5227;
	border-width: 2px;
}
/* SECOND PART */

.friend-block{
  border: 4px solid #7F5227;
  border-radius: 5px ;
  background-color:#F3F6E0;
	width: 80%;
	padding: 8px;
	height: 120px;
	overflow: auto;
	margin: 10px 13px;
  vertical-align: middle;
  scrollbar-width: thin;
  display: inline-block;
}

.friend-block img{
  height:60px;
}

.button-block {
	gap: 7px;
	display: grid;
	grid-template-columns: auto auto auto auto auto auto;
}

.button {
  background-color:#7F5227;
  color:#F3F6E0;
  padding:5px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  transition: 0.2s;
}

.button:hover{
  font-size: 15px;
  background-color:#8c8062;
}

/* fuckass compatibilitay */

@media only screen and (max-width: 1410px) {

  .fun-box{
    width: 285px;
  }

}

@media only screen and (max-width: 1300px) {

  .fun-box{
    width: 250px;
  }

}

@media only screen and (max-width: 1175px) {

  .fun-box{
    width: 200px;
  }

  .width-200px img{
    width: 180px;
  }

}

@media only screen and (max-width:1000px){
  .fun-box{
    width: 170px;
  }

  .width-200px img{
    width: 100px;
  }

}

@media only screen and (max-width: 500px) {

  .fun-box{
    width: 160px;
  }

  .width-200px img{
    width: 150px;
  }

}