* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 100%;
  font-weight: normal;
  font-style: sans-serif;
  line-height: 1.2;
}

@font-face {
  font-family: times;
  src: url('TimesNewRomanPSStd-Regular.otf');
}

body {
    overflow: hidden;
    font-size: 17px;
    word-break: break-word;
    font-family: times;
}


p {
  width: 90%;
}


h1 {
  font-size: 35px;
}

h2 {
  font-size: 25px;
}

h3 {
  font-size: 25px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 13px;
}

.box {
  position: absolute;
  background: white;
  width: 70%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding-top: 1%;
  padding-bottom: 1%;
  overflow: auto;
}

.bottom {
  position: absolute;
  z-index: 99;
  width: 100%;
  background: red;
  bottom: 0;
  margin-top:1%;

}