﻿body {
  background-color: transparent;
  width: 1280px;
  height: 720px;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

object#applicationManager {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
}

#message {
  visibility: hidden;
  position: absolute;
  top: 40%;
  left: 30%;
  width: 40%;
  background: #cc0000;
  color: black;
  padding: 20px;
  border-radius: 12px;
  font-size: 28px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

#banner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: red;
  color: black;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 24px;
}

/* MENU PAGE */
#menu {
  list-style: none;
  padding: 0;
  margin: 100px auto;
  width: 400px;
  font-size: 30px;
  text-align: left;
}

#menu li {
  background: #eee;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
}

#menu li.selected {
  background: #cc0000;
  color: white;
}
