/* ------ Layout ----- */

html {
  background-color: #ffffff;
  font-family: 'Verdana', Serif;
  font-size: 12px;
  background-image: url('../img/bg.png');
  background-repeat: repeat;
}

.center {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  min-width:256px;
}

.link {
  color: #006de2;
  display: inline-block;
  text-decoration: none;
}

.link:hover {
  color: #5495e5;
}

.link img{
  display:inline-block;
}

/* ------ Menu Button ----- */

.menu-button img {
  border: none;
  color: white;
  padding: 0px;
  margin: 4px;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 1.0);
  transition: transform 0.1s;
  max-width: 100%;
}

.menu-button img:hover {
  filter: brightness(1.05);
}

.menu-button img:active {
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
  transform: translateX(1px) translateY(1px);
}

/* ------ Main Area ----- */

.main-area {
  border: 4px solid;
  background-color: #d8d8d8;
  padding: 8px;
  margin: 8px;
  width: auto;
  min-width:256px;
  border-color: #e5e5e5 #b2b2b2 #b2b2b2 #e5e5e5;
  background-image: url('../img/bg_content_top.png'), url('../img/bg_content_bottom.png');
  background-position: top center, bottom center;
  background-repeat: repeat-x, repeat-x;
}

.main-paragraph{
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: pre-line;
}

.main-iframe {
    width: 256px;
    height:256px;
	border: 2px solid #191919;
	display: block;
	padding: 0px;
	margin: 4px;
}

.main-screenshot{
  width: 256px;
  height:256px;
  object-fit: cover;
  margin: 4px;
  padding:0px;
  border: 2px solid #191919;
}

.main-screenshot:hover {
  filter: brightness(1.05);
}

.main-table{
	border-collapse: collapse;
	margin: 4px;
	width:auto;
}

.main-table th,
.main-table td {
	padding: 4px;
	border: 2px solid #191919;
}

.main-list li {
  list-style-type: none;
  font-weight: bold;
  margin-left: -20px;
}


.main-list-2 li {
  margin-left: 10px;
  list-style-type:square;
}
