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---*/

.sleepingBox{
  font-family: "Comic Sans MS", sans-serif;
  background-color: #FFEBF5;
  color: #66023c;
  margin: 1rem auto;
  border-radius: 16px;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.contHeadline{
  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;
}

.entry {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  max-width: 1000px;
}

.label {
  font-weight: bold;
  flex: 1;
  text-align: left;
}

.answer {
  flex: 1;
  text-align: right;
}





