body {  
    background-color:#66023c;
    background-image:url("gifs/backgroundGif.gif");
    max-width: 1400px;
    display: block;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
}

.window {
  font-family: "Comic Sans MS", sans-serif;
  background-color:#FFC5D3;
  color:#BFA8FF;
  margin: 20px;
  padding: 20px;
  }
  
  /* nav-bar */
.nav-bar {
  display: flex;
  justify-content: space-evenly;
  align-items: center; 
  flex-wrap: wrap;
  box-sizing: border-box;
  line-height: 40px;
  height: 50px; 
}

.nav-barBtns {
  font-family: "Comic Sans MS", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #FBD5FF;
  color: #66023c;
  background-color: #FBD5FF;
  border-radius: 12px;
  padding: 8px;
  margin: 2px;
  height: 20px;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
}

/* headline */
.headline-container {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;
}

@font-face {
  font-family: 'silly';
  src: url('/fonts/silly.ttf') format('truetype');
}

.headline {
  font-size: 80px;
  text-align: center;
  font-family: 'silly', sans-serif;
  color: #eb88e4;
  margin-top: 10px;
  margin-bottom: 10px;
}
/*---main part---*/

.blogContainer{
  font-family: "Comic Sans MS", sans-serif;
  background-color: #FFEBF5;
  margin: 1rem auto;
  border-radius: 16px;
  width: 60%;
  max-height: 800px;
  overflow: auto;
}

.blogHeadline{
  background-color: #FBD5FF;
  font-weight: bold;
  color: #66023c;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 5px 12px;
  font-weight: bold;
  border-radius: 12px 12px 0 0;
}

li{
  padding: 6px;
  color: #66023c;
  font-family: "Comic Sans MS", sans-serif;
}
a:link{
  color:inherit;
  text-decoration: none;
}
a:hover {
  color: inherit;
  text-decoration: underline;
}

/*gifs :p*/
.gifs{
 text-align: center;
}
.sillyGif{
  width: 120px;       
  height: auto;        
  display: inline-block;
  margin: 4px;         
  border-radius: 12px;
}





