*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

html,
body {
  width: 100vw;
  height: 100vh;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  background: #005cc3;
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}

img {
  border: 0;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.fl-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.fl-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.fl1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.fl-space-between {
  justify-content: space-between;
}

#cover {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #fff;
  background: #005cc3;
  overflow: hidden;
  z-index: 5000;
}

#cover h1 {
  color: #fff;
  font-size: 4.2rem;
}

#cover h2 {
  font-size: 2.8rem;
  color: #ccc;
  margin-bottom: 5.5rem;
}

#cover a {
  color: #fffc7f;
  font-size: 3.6rem;
}

#cover a:hover {
  color: #fff;
}

#logo {
  width: 512px;
  height: 512px;
  text-align: center;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("../img/logoicon.png");
}
