* {
  box-sizing: border-box;
  font-family: 'Cabin', sans-serif;
}

body {
  margin: 0;
  background-color: #17181c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  text-align: center;
}

.container .title {
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 2.5rem;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, #e8cbc0, #636fa4);
  -webkit-background-clip: text;
  background-clip: text;
  width: 480px;
  animation: typing 2s 200ms steps(22), blink 0.5s step-end infinite alternate;
  white-space: nowrap;
  overflow: hidden;
  border-right: 3px solid #636fa4;
}

.container .sub_title {
  margin: 0;
  margin-top: 18px;
  font-weight: normal;
  font-size: 1rem;
  color: #6e6e73;
}

.container .social_links {
  padding: 0px;
  list-style: none;
  margin: 0;
  margin-top: 24px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.container .social_links li {
  display: inline-block;
  text-align: center;
  margin-left: 30px;
}

.container .social_links li:hover {
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
}

.container .social_links li:first-child {
  margin-left: 0px;
}

.container .social_links li:last-child {
  margin-right: 0px;
}

.container .social_links li a {
  color: #6e6e73;
  font-size: 1.5rem;
  font-weight: 500;
  text-decoration: none;
}

.container .social_links li a:hover {
  color: #e8cbc0;
}

.bottom_sec {
  position: absolute;
  width: 100%;
  color: #6e6e73;
  background-color: #fff;
  bottom: 0;
  text-align: center;
  padding: 10px 0;
}

.bottom_sec p {
  margin: 0;
}

.bottom_sec p span {
  font-weight: 900;
}

@keyframes typing {
  from {
    width: 0;
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@media (max-width: 500px) {
  body {
    justify-content: flex-start;
  }
  .container {
    margin-left: 16px;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .container .title {
    text-align: left;
    width: 330px;
    font-size: 1.8rem;
    margin: 0;
  }
  .bottom_sec {
    text-align: left;
  }
  .bottom_sec p {
    margin-left: 16px;
  }
}
