@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@500&display=swap');
html, a {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  color: #e4f7ff;
  background: #172c3c;
}
body {
  height: 100vh;
  margin: 0;
  padding: 0;
}
#profile {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: calc(100vw - 20px);
  max-width: 23rem;
}
header {
  display: flex;
  justify-content: center;
  height: 8rem;
  margin-bottom: 1.25rem;
  width: 100%;
}
header img {
  margin-right: 1.25rem;
  border-radius: 0.75rem;
  -webkit-user-drag: none;
}
header p {
  font-size: 1.25rem;
  line-height: 1rem;
  margin-top: 0.8rem;
}
header h1 {
  margin: 0;
  font-weight: bold;
  line-height: 0.8;
  font-size: 3.75rem;
}
header h2 {
  line-height: 0.5;
  transform: translateX(-0.25rem);
  font-size: 1.5rem;
}
@media screen and (max-width: 400px) {
  header h1 {font-size: 2.5rem;}
  header p {font-size: 1rem;}
  header h2 {font-size: 1rem;}
  header {height: 6rem;}
}
#discription {
  margin-bottom: 1.25rem;
}
.linkx {
  margin-right: .5em;
  transform: scale(1.2) translateY(-0.2px);
}
#links > a {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  font-size: 1.6em;
  border: solid 2px #e4f7ff;
  border-bottom: transparent;
  transition: all .2s;
  user-select: none;
  height: 70px;
  line-height: 65px;
  width: calc(100% - 38px);
  padding: 0 17px;
}
#links > a span:first-of-type {
  font-weight: bold;
}
#links > a span:last-of-type {
  opacity: .8;
}
#links > a:last-of-type {
  border: solid 2px #e4f7ff;
}
#links > a:hover {
  color: #000000;
  background-color: #e4f7ff;
}
#links > a span::after, #links > a span::before, #links > a::after, #links > a::before {
  content: "";
  position: absolute;
  transition: all .5s;
  background-color: #e4f7ff;
}
#links > a::before {
  height: 5px;
  width: 0;
  top: 0;
  left: 0;
  transition-delay: .0s;
}
#links > a::after {
  width: 5px;
  height: 0;
  top: 0;
  right: 0;
}
#links > a span::before {
  height: 5px;
  width: 0;
  bottom: 0;
  right: 0;
  transition-delay: .0s;
}
#links > a span::after {
  width: 5px;
  height: 0;
  bottom: 0;
  left: 0;
}
#links > a:hover span::before, #links > a:hover::before {
  width: 100%;
  transition: all .2s;
}
#links > a:hover span::after, #links > a:hover::after {
  height: 100%;
  transition: all .2s;
}
#links > a:hover::after {
  transition-delay: .4s;
}
#links > a:hover span::after {
  transition-delay: .4s;
}
#links > a:hover {
  transition-delay: .4s;
}
#bg {
  height: calc(100vh - 10px);
}