@keyframes logoTextFlashing {
  0% {
    color: #777;
  }
  5% {
    color: #eee;
  }
  8% {
    color: #888;
  }
  15% {
    color: #ddd;
  }
  18% {
    color: #777;
  }
  26% {
    color: #eee;
  }
  28% {
    color: #999;
  }
  45% {
    color: #fff;
  }
  65% {
    color: #fff;
  }
  68% {
    color: #777;
  }
  72% {
    color: #fff;
  }
  100% {
    color: #fff;
  }
}
@keyframes logoWidthLine {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@-webkit-keyframes logoHeightLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
@keyframes logoHeightLine {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
.title-list-block {
  background-color: #121212;
  min-height: 100vh;
}
.nickname-block {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nickname {
  position: relative;
  text-align: center;
  margin-top: -100px;
  padding: 20px 30px;
}
.nickname-item {
  text-transform: uppercase;
  color: #555;
  font-size: 5vw;
  font-weight: 300;
  letter-spacing: 8px;
  animation: logoTextFlashing 3s 2s forwards;
}
.nickname-line {
  position: absolute;
  background-color: #fff;
}
.nickname-line:nth-child(1), .nickname-line:nth-child(3) {
  -webkit-transition: width 0.3s;
  -o-transition: width 0.3s;
  transition: width 0.3s;
}
.nickname-line:nth-child(2), .nickname-line:nth-child(4) {
  -webkit-transition: height 0.35s;
  -o-transition: height 0.35s;
  transition: height 0.35s;
}
.nickname-line:nth-child(1) {
  left: 0;
  top: 0;
}
.nickname-line:nth-child(2) {
  right: 0;
  top: 0;
}
.nickname-line:nth-child(3) {
  right: 0;
  bottom: 0;
}
.nickname-line:nth-child(4) {
  left: 0;
  bottom: 0;
}
.nickname .nickname-line:nth-child(odd) {
  height: 4px;
  width: 0%;
  -webkit-animation: logoWidthLine 0.5s 0.7s forwards;
  animation: logoWidthLine 0.5s 0.7s forwards;
}
.nickname .nickname-line:nth-child(even) {
  height: 0%;
  width: 4px;
  -webkit-animation: logoHeightLine 0.5s 1.2s forwards;
  animation: logoHeightLine 0.5s 1.2s forwards;
}
.about-block {
  min-height: 100vh;
  background-color: #121212;
}
.about-item {
  color: #FFF;
  font-size: 25px;
  margin-left: 2vw;
}
.link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #121212;
}
.link-row {
  -webkit-transition: padding 0.3s;
  -o-transition: padding 0.3s;
  transition: padding 0.3s;
  padding-top: calc(40vh - 68px);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.link-row:hover {
  padding-top: calc(40vh - 88px);
}
.link-row:hover .card:nth-child(1) {
  margin-bottom: 20px
}
.link-row:hover .card:nth-child(2) {
  margin-bottom: 20px;
  margin-top: 20px;
}
.link-row:hover .card:nth-child(3) {
  margin-top: 20px
}
.first-page-recount-link {
  -webkit-transition: color 0.4s, border 0.4s, line-height 0.3s;
  -o-transition: color 0.4s, border 0.4s, line-height 0.3s;
  transition: color 0.4s, border 0.4s, line-height 0.3s;
  color: #FFF;
  text-decoration: none;
}
.first-page-recount-link:hover {
  color: #FF8C69;
  text-decoration: none;
  display: inline-block;
  line-height: 0.85;
  border-bottom: 5px solid #FFF;
}
.card {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background: none;
  border: none;
  max-height: 100px;
  text-decoration: none;
  -webkit-transition: margin 0.3s;
  -o-transition: margin 0.3s;
  transition: margin 0.3s;
}
.card-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 400px;
  text-transform: uppercase;
  color: #121212;
  background-color: #FFF;
  -webkit-transition: color 0.3s, background-color 0.3s;
  -o-transition: color 0.3s, background-color 0.3s;
  transition: color 0.3s, background-color 0.3s;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  height: 100px;
}
.card-item:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #121212;
  transition: width .4s ease-out;
}
.card-item:hover {
  text-decoration: none;
  color: #FFF;
}
.card-item:hover:before {
  width: 100%;
}
.card-text {
  position: relative;
  z-index: 1;
  text-align: center;
  vertical-align: middle;
  font-size: 54px;
}
@media all and (min-width: 2560px) {
  .about-item {
    font-size: 39px;
  }
  .card {
    max-height: 200px;
  }
  .card-item {
    width: 600px;
    height: unset;
    padding: 20px;
  }
  .card-text {
    font-size: 86px;
  }
}
@media all and (min-width: 1920px) and (max-width: 2559px) {
  .about-item {
    font-size: 32px;
  }
}
@media (max-width: 1024px) {
  .about-item {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .nickname {
    width: 300px;
    margin-top: -100px;
  }
  .nickname-item {
    font-size: 37px;
  }
  .link-row .card:nth-child(1) {
    margin-bottom: 20px
  }
  .link-row .card:nth-child(2) {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .link-row .card:nth-child(3) {
    margin-top: 20px
  }
  .card-item {
    width: 230px;
    padding: 15px;
  }
  .card {
    max-height: 70px;
  }
  .card-text {
    font-size: 26px;
  }
}
@media (max-width: 350px) {
  .about-item {
    font-size: 16px;
  }
}