/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'Habbo';
    src: url('/media/Habbo.ttf');
}

body {
  background-repeat: no-repeat;
  background: rgba(0, 0, 0, 0);
  height: 100%;
  margin: 0;
  font-size: 16px;
  font-family: "Times New Roman";
  color: yellow;
}

#TODO{
  
  background: url('/media/Sunflower_Bkgrd.jpg');
  transform: rotate(-2deg);
  color: black;
  width: fit-content;
  height: fit-content;
  padding: 8px;
  }

.border{
  
  border: 4px ridge grey;
  background-color: rgba(37, 66, 83, 0.8);
  padding: 8px;
  margin: 5px;
  }

.baniere{
  background-image: url('/media/bannergris.gif');
  background-repeat: no-repeat;
  background-size: cover;
  text-align : center;
}

.panel_tool{
  width: 20%;
}

.subbody{
  height: 100%;
  width: 100%;
  display: inline-flex;
}

.panel{
  height: 100%;
}

.navbar{
  display: flex; 
  justify-content: space-around;
}
  
.navelem {
  color: inherit;
  text-decoration: none;
  height: 30px;
  display: flex; 
  border: 4px ridge yellow;
  padding: 5px;
  align-items : center;
}

.navelemicon{
  height: 100%;
  margin-right: 5px;
  }
  
.barre {
  position: relative;
}

.curseur {
  width: 2px;
  height: 30px;
  background: black;
  position: absolute;
  top: -3px;
}

.emoji {
  height: 35px;
  margin-bottom: -5px;
  }

#news {
  display: flex;
  font-family: Habbo;
	padding: 45px 30px 30px 30px;
	background-image: url('/media/tv.jpg');
  background-size: 100% auto;
	background-repeat: no-repeat;
  width: 20%;
  flex-direction: column;
  
  padding-bottom: 10%;
  }

#newstitle{
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: center;
  font-size:24px;
  margin-bottom: 10px;
}

#newscontent > ul > li {
	margin: 0;
	padding: 0px 0 0px 14px;
	list-style: none;
	background-image: url('/media/listdot.gif');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 10px;
	line-height: normal;
}

#newscontent > ul {
	margin: 0;
	padding: 0px 0 0px 14px;
}


.base {
  display: inline-block;
  border: 10px groove gray; 
  border-right: 10px ridge gray;
  border-bottom: 10px ridge gray;
  padding: 10px;
  background-color: #BBBBBB;
  position: absolute;
  text-align: center;
}


