body {
  font-family: Gill Sans, sans-serif;
  
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url("/img/back.png");
  background-size: 100%;
}

.content p{
  text-align: justify;  
}

.container{
  display: flex;
  width: 900px;
  height: 700px;
  box-shadow: -10px 10px 0px rgba(0,0,0, 0.2);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 100;
}

hr{
  border-style: solid !important;
  color: #424242;
}

.sidebar{
  width: 170px;
  background-color: #7F7176;
  color: #424242;
  padding: 20px;
}

.sidebar h1{
  font-family: Kurale;  
}

.content{
  flex: 1;
  padding: 20px;
  background-color: #F6F0E7;
  overflow-x: hidden;
  overflow-y: auto;
  color: #788585;
  font-size: 16px;
}

.content p{
  color: grey;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.3px;
}

.content h1{
  font-family: Kurale;
  font-size: 38px;
  color: #878076;
  text-decoration: none;
}

.content h1:hover{
  color: #6d675f;  
}

.sidebar a{
  color: #424242;
  text-decoration: none;
  display: block;
  height:25px;
  line-height: 30px;
  padding: 5px 10px 5px 10px;
  font-size: 16px; 
}

.sidebar a:hover{
  padding: 5px 15px 5px 15px;  
}



















