main {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parent {
  display: flex;
}

#circle-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  animation: rolling 3s;
}

@keyframes rolling {
  0% {
    transform: translateX(-100px) rotate(-20deg)
  }

  100% {
    transform: translateX(0) rotate(0deg)
  }
}

#img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.parent2 {
  margin-left: 50px;
}

.info {
  font-size: 25px;
  margin-top: 10px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#tag-name,
#strength,
#word {
  margin: 10px 0;
}

#tag-name {
  width: 100%;
  text-align: center;
  font-size: 2.8rem;
  border-bottom: 1px solid gray;
  padding: 5px 0;
}

#strength {
  border-right: 1.5px solid black;
  white-space: nowrap;
  overflow: hidden;
  animation-name: typing, blinking;
  animation-delay: 0s, 2.7s;
  animation-duration: 2.5s, 1s;
  animation-iteration-count: 1, infinite;
  animation-timing-function: steps(27), steps(2);
}

@keyframes typing {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes blinking {
  0% {
    border-right: 1.5px solid transparent;
  }
  100% {
    border-right: 1.5px solid black;
  }
}

#word {
  font-style: italic;
}

.link-img {
  display: flex;
}

#velog-img {
  width: 40px;
  height: 40px;
  border-radius: 1px;
  margin-right: 20px;
  background-image: url('https://pbs.twimg.com/profile_images/1228368893321736193/Ov0og7E8_400x400.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#github-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url('https://cdn-icons-png.flaticon.com/512/25/25231.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 720px) {
  .parent {
    flex-direction: column;
  }

  #circle-img {
    margin-bottom: 15px;
  }

  .parent2 {
    margin: 0;
  }

  .info {
    margin-bottom: 35px;
  }

  .link-img {
    justify-content: center;
  }

  .link-img a {
    margin: 0 5px;
  }
}