@charset "UTF-8";
/* top.css */

#wrapper {
  height: 100%;
}
#top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#top-content-inner {
  /* transform: translateY(-20px); */
}
.top-logo {
  background-color: #828993;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin: 0 auto 24px;
  width: 200px;
}
h1 {
  font-size: 1.9em;
  font-weight: normal;
}
nav ul {
  display: flex;
}

@media screen and (max-width:599px) {

  #top-content {
    padding-bottom: 62px;
  }
  nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
  nav ul li {
    flex: 1;
  }
  nav ul li + li {
    border-left: 1px solid #051427;
  }
  nav ul li a {
    background: #fff;
    color: #051427;
    display: block;
    font-size: 1.5em;
    line-height: 1;
    padding: 10px 0;
    text-align: center;
  }
}

@media screen and (min-width:600px), print {


  #top-content-inner {
    transform: translateY(-40px);
  }
  h1 {
    font-size: 40px;
  }
  nav {
    margin: 20px auto 0;
  }
  nav ul {
    justify-content: center;
  }
  nav ul li {
    padding: 0 16px;
  }
  nav a {
    font-size: 20px;
  }

}/* media */
