.container{
  flex-direction: row;
  background-color: grey;
  margin: auto;
  width: 800px;
  height: 600px;
  border: 2px solid black;
}

.title{
  padding: 4px;
  height: 70px;
  background-color: #eded8a;
  border-bottom: 2px solid black;
}

.title h1{
  width: 792px;
  font-family: Tahoma;
  text-align: center;
}

.sidebar{
  background-color: white;
  padding: 4px;
  width: 150px;
  height: 200px;
  overflow-y: auto;
  border-right: 2px solid black;
  border-bottom: 2px solid black;
}

.sidebar p{
  font-family: courier;
}

.sidebar_two{
  column-span: none;
  padding: 4px;
  width: 150px;
  height: 302px;
  border-right: 2px solid black;
  background-color: lightpink;
}

.container_two{
  display: flex;
  right: 0%;
}

.content{
  padding: 4px;
}