html {
  font-size: 16px;
}

img {
  max-width: 100% !important;
  height: auto !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", Avenir, "Segoe UI", Roboto, Noto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 1.3rem;
  color: #333;
  background-color: #fff;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.bordered {
  border: solid #ccc 1px;
  border-radius: 6px;
  box-shadow: 0 1px 1px #ccc;
  max-width: 888px;
  margin: 2em auto 1em;
}

.bordered tr:hover {
  background: #fbf8e9;
}

.bordered td,
.bordered th {
  border-left: 1px solid #ccc;
  border-top: 1px solid #ccc;
  padding: 0.7rem;
  text-align: left;
}

.bordered th {
  background-color: #dce9f9;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebf3fc), to(#dce9f9));
  background-image: -webkit-linear-gradient(top, #ebf3fc, #dce9f9);
  background-image: -moz-linear-gradient(top, #ebf3fc, #dce9f9);
  background-image: -ms-linear-gradient(top, #ebf3fc, #dce9f9);
  background-image: -o-linear-gradient(top, #ebf3fc, #dce9f9);
  background-image: linear-gradient(top, #ebf3fc, #dce9f9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  border-top: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
}

.bordered td:first-child,
.bordered th:first-child {
  border-left: none;
}

.bordered th:first-child {
  border-radius: 6px 0 0 0;
}

.bordered th:last-child {
  border-radius: 0 6px 0 0;
}

.bordered th:only-child {
  border-radius: 6px 6px 0 0;
}

.bordered tr:last-child td:first-child {
  border-radius: 0 0 0 6px;
}

.bordered tr:last-child td:last-child {
  border-radius: 0 0 6px 0;
}

h1 {
  font-size: 2.4rem;
  text-align: center;
  color: #444;
}

h2 {
  font-size: 1.6rem;
  text-align: center;
  color: #444;
}

@keyframes bounceInDown {
  0% {
      opacity: 0;
      transform: translateY(-2000px);
  }

  60% {
      opacity: 1;
      transform: translateY(30px);
  }

  80% {
      transform: translateY(-10px);
  }

  100% {
      transform: translateY(0);
  }
}

.floater {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 200px;
  background-color: #fff;
  border: 1px solid #d2d2d2;
  border-radius: 5px;
  padding: 8px;
  font-size: 1.2rem;
}

#anime {
  width: 888 px;
  text-align: center;
  margin: 2% auto 0;
  margin: 4dvh auto 0;
  animation: bounceInDown 1s;
  animation-iteration-count: 1;
}

@media screen and (max-width: 700px),
screen and (max-width: 700px) and (resolution >=1.5dppx) {
  #anime {
      width: 90%;
  }

  .floater {
      display: none;
  }

  html {
      font-size: 13px;
  }
}