@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@200;300;400;500;600;700;800&display=swap');

*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Roboto', sans-serif;
  background-color: #0d1117;
  color: #c9d1d9;
}

.container {
  max-width: 800px;
  margin: 60px auto;
  padding: 1.4rem;
}

header {
  text-align: center;
}

h1, h2 {
  margin-bottom: 1.2rem;
}

article {
  margin: 1.3rem 0;
}

.circle {
    border-radius: 50% !important;
}

.profile {
  max-width: 150px;
}

.social-media{
  display: flex;
  justify-content: center;
  margin: 1rem 0;
}

.social-icon{
  height: 46px;
  width: 46px;
  border: 1px solid #FFF;
  margin: 0 0.45rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icon:hover{
  color: #c9d1d9;
  border-color: #c9d1d9;
}

.typewriter {
  display: inline-block;
}

.typewriter p {
  font-family: 'Roboto Mono', 'Roboto', sans-serif;
  color: #8b949e;
}

@media (min-width: 750px) {
  .typewriter p {
    display: inline-block;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #8b949e; /* The typwriter cursor */
    white-space: nowrap; /* Keeps the content on a single line */
    margin: 0 auto; /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em; /* Adjust as needed */
    animation: 
      typing 3.5s steps(53, end),
      cursor .75s step-end infinite;
  }

  /* The typing effect */
  @keyframes typing {
    from { width: 0 }
    to { width: 100% }
  }

  /* The typewriter cursor effect */
  @keyframes cursor {
    from, to { border-color: transparent }
    50% { border-color: #5995fd; }
  }
}