@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Montserrat:900|Lato:300,400,900");
/* The following line is used to measure usage of this code. You can remove it if you want. */
@import url("https://px.animaapp.com/67ced6acd88328bf7919b58f.67ced6acd88328bf7919b592.d5RtID1.hcp.png");

body {
  background-color: #000000;
  opacity: 0;
  animation: fadeIn 0.5s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


.screen a {
  display: contents;
  text-decoration: none;
}

.container-center-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  pointer-events: none;
  width: 100%;
}

.container-center-horizontal > * {
  flex-shrink: 0;
  pointer-events: auto;
}

/* 移动优先基础样式 */
* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    min-width: 320px;
}

.nav-links a {
    min-width: 48px;
    padding: 12px 16px;
    display: block;
}

@media (hover: hover) {
    .nav-links a:hover {
        opacity: 0.8;
    }
}