body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: black;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* header css starts */
header {
  width: 100%;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.htitle {
  line-height: 0.8;
  font-weight: 700;
  font-size: 128px;
}

.nav-links {
  display: flex;
  align-self: flex-start;
  gap: 15px;
}

.nav-item {
  font-size: 16px;
}

.nav-item.selected {
  font-weight: 700;
  text-decoration: underline;
}

a {
  text-decoration: none;
  color: inherit;
}

@media (max-width: 992px) {
  header {
    padding: 15px;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-end;
  }

  .htitle {
    font-size: 64px;
  }
}
/* header css ends */

/* social css starts */
footer {
  width: 100%;
}

.social-icons {
  padding: 25px 0;
  list-style: none;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-icons img {
  height: 15px;
  filter: contrast(7%);
}

.social-icons img:hover {
  filter: contrast(100%);
}
/* social css ends */

/* info css starts */
main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  box-sizing: border-box;
  color: #777777;
  font-size: 16px;
  line-height: 150%;
  padding: 25px 0;
}

.responsive {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 25px;
  width: 80vw;
}

main a:hover {
  color: black;
}

.profile-image {
  max-width: 45vw;
  max-height: 75vh;
  object-fit: cover;
}

.text-content {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.name {
  color: black;
  font-size: 40px;
  line-height: 0.8;
}

.description {
  font-family: "Jost", sans-serif;
}

.section-title,
.name {
  font-weight: 700;
}

@media (max-width: 992px) {
  .responsive {
    flex-direction: column;
  }

  .profile-image {
    max-width: 700px;
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
  }

  .text-content {
    width: 100%;
  }

  .name,
  .description {
    align-self: center;
    text-align: center;
  }
}
/* info css ends */
