
@media screen and (min-width: 450px) {

body {
  background-color: #ECEDF5;
  font-family: Segoe UI, Arial, sans-serif;
}
a:link, a:visited {
  color: #73B35C
}

#content {
    overflow: hidden;
    width: 450px;
    max-width: 100%;
    max-height: 100%;
    height: 600px;
    background-color: #148000;
    box-shadow: 0 0 20px #111;
    -webkit-box-shadow: 0 0 20px #111;
    -moz-box-shadow: 0 0 20px #111;
    -ms-box-shadow: 0 0 20px #111;
    -o-box-shadow: 0 0 20px #111;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

footer {
  font-family: Arial, sans-serif;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  z-index: -1;
}
#frame {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}
}

@media screen and (max-width: 449px) {
  #content {
    background-color: #148000;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }


footer {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  z-index: -1;
}
#frame {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}
}
