html, body {
  font-size: 16px;
  line-height: 1.5;
  color: black;
  font-family: 'Inconsolata';
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
  padding: 1%;;
}

heading{
  font-size: 25px;
  font-weight: normal;
}


time {
  font-size: 20px;
  font-weight: normal;
  border: 1px solid white;
  background: white;
  color: black;
  border-radius: 50;
  padding: 1%;
}

.framework {
  display: flex;
  flex-direction: row;
  flex: auto;
  min-height: 100%;
}


.sidebar {
  background-color: grey;
  font-weight: bold;
  color: black;
  border-right: solid black 1px;
  width: 30%;
  display: flex;
  flex-direction: column;
}




.content {
  background-color: white;
  flex: auto;
  font-weight: bold;
  color: black;
  align-content: center;
  text-align: center;
}


.sidebar-area {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  border-bottom: solid black 1px;
}




