Problem Statement : Center alignment not happening
Relevant code:
#tekst {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: #EFEFEF;
  width: 100%;
  height: 30%;
}
#innhold {
  width: 100%;
  height: 30%;
  top: 18%;
  left: 0%;
  background-color: #7e7e7e;
  position: absolute;
  border-radius: 5px;
  z-index: 2;
}
<div id="innhold">
  <div id="tekst"> text </div>
</div>
any help would be appreciated.