<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
* {
  box-sizing: border-box;
  
  font-family:Verdana;
}
body {
  background-color:#222222;
  font-family:Verdana;
  color:#88DD88;
}


a:link {
  color: #88AA88;
  text-decoration: none;
}

/* visited link */
a:visited {
  color: #88AA88;
  text-decoration: none;
}

/* mouse over link */
a:hover {
  color: #88EE88;
  text-decoration: none;
}

/* selected link */
a:active {
  color: #88AA88;
  text-decoration: none;
}

.header {
  background-color:#333333;
  padding:15px;
  text-align: center;
}
.menu {
  float: left;
  width: 15%;
}
.menuitem {
  padding: 8px;
  margin-top: 7px;
  border-bottom: 1px solid #000000;
}

.menuitemCurrent {
  padding: 8px;
  margin-top: 7px;
  background-color: #333333;
  border-bottom: 1px solid #00000;
}
.main {
  float: left;
  width: 79%;
  padding: 1%;
  overflow: auto;
  text-align:center;
}
.right {
  background-color: lightblue;
  float: left;
  width: 10%;
  padding: 10px 15px;
  margin-top: 7px;
}

.bottom {
background-color:#333333;
text-align:center;
padding:10px;
margin-top:7px;
font-size:12px;
}

span.blockspam {
  display: none;
}

@media only screen and (max-width:800px) {
  /* For tablets: */
  .main {
    width: 80%;
    padding: 0;
  }
  .right {
    width: 100%;
  }
}
@media only screen and (max-width:500px) {
  /* For mobile phones: */
  .menu, .main, .right {
    width: 100%;
  }
}
</style>
