.presenter {
  width: 100%;
  height: 100%;
  /*min-height: 200px;*/
  position: relative;
  display: block;
}
.scene {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: block;
}
.act {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  padding: 10px ;
}
.act:before,
.act:after {
  display: table;
  content: "";
}
.act:after {
  clear: both;
}
.actor {
  /*position: absolute;*/
  margin-right: 10px;
  line-height: 20px;
}

@media (max-width: 990px) {
    .presenter img.actor {
      text-align: center;
    }

    .presenter h1.actor {
      line-height: 38px;
    }

}