<META NAME="viewport" CONTENT="max-width=100%, initial-scale=1">

<STYLE>

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
  background-color: wheat;
}

.newbybanner {
  background-color: #99ccff;
  color: black;
  font-size: 20px;
  width: 100%;
  position: fixed;
  height: 50px;
  top: 0px;
  line-height: 15px;
  display: flex;
  flex-direction: column;
  display: grid;
  grid-auto-rows: auto, auto, auto, auto, auto;
  grid-row: 1;
}

.topnav {
  background-color: #333;
  font-size: 20px;
  line-height: 15px;
  height: 45px;
  width: 100%;
  position: fixed;
  top: 50px;
  grid-row: 2;
}

.newbycontent {
  top: 95px;
  grid-row: 3;
  min-height: 100vh;
  width: 100%;
  background-color: wheat;
  overflow-x: hidden;
  overflow-y: hidden;
}

.newbycontentdiv {
  margin: 0;
  top: 95px;
  position: relative; left: 25px;
  grid-row: 4;
}

.newbyfooter {
  position: fixed;
  bottom: 1;
  width: 100%;
  background-color: #99ccff;
  color: black;
  place-items: center;
  text-align: center;
  height: 65px;
  grid-row: 5;
}

.topnav a {
  color: #f2f2f2;
  text-align: center;
  padding: 15px 15px;
  text-decoration: none;
  font-size: 15px;
  float: left;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

</STYLE>