font-face {
  src: url(./fonts/MOONGLADE.TTF);
  font-family: moonglade;
}

body {
  background-image: url("./images/index_bg.jpg");
  background-size: cover;
  height: 100%;
  overflow: auto;
  margin: 0;
  padding: 0;
}

#HText, #HLine {
  color: #fff;
  text-decoration: none;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 32px;
}

#Logo {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -58%);
  color: #fbfbf3;
  text-align: center;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 18px;
}

#Search {
  position: absolute;
  top: 60%;
  left: 41%;
  transform: translate(-57%, -40%);
}

input[type="text"]
{
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 32px;
  width: 170%;
  margin: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #dddddd;
  opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #dddddd;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #dddddd;
}

#Footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

#FText, #FLine {
  color: #fff;
  text-decoration: none;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 28px;
}

ul.topnav {
  list-style-type: none;
  margin: 0;
  padding-left: 32.8%;
  overflow: hidden;
  background-color: #080808;
}

ul.topnav li {
  float: left;
}

ul.topnav li a {
  display: block;
  color: #666666;
  text-align: center;
  padding: 14px 16px;
  font-family: 'Alegreya Sans SC', sans-serif;
  font-size: 20px;
  text-decoration: none;
}

ul.topnav li a:hover {
  background-color: #0e0e0e;
}

@media screen and (max-width: 600px) {
  ul.topnav li.right,
  ul.topnav li {float: none;}
}