/* BY ID */

#header-first {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 16px;
}

#my-name {
  font-size: 32px;
}

#copyright {
  text-align: left;
  padding: 16px;
}

#about-link {
  flex-grow: 1;
}

#about-link-wrapper {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
}

#portrait {
  border-radius: 6px;
  width: 80px;
  height: auto;
  transition: 0.3s ease-in-out;
  box-shadow: 3px 3px 7px var(--nm-dark), -3px -3px 7px var(--nm-light);
}

#portrait:hover {
  transform: scaleX(-1);
}

#landing-spacer {
  min-height: 82vh;
  /* height: 82vh; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-align: center;
}

#h2-wrapper {
  padding: 0 24px;
  display: flex;
  width: 90%;
  align-items: center;
}

#heading-previous {
  margin-top: 230px;
}

#heading-card {
  min-width: 20%;
}

#blog-grid {
  display: flex;
  margin: auto;
  flex-wrap: wrap;
  gap: 16px;
}

#blog-favorites,
#blog-favorites h4 {
  text-align: right;
}

#heading-all-posts,
#heading-favorites {
  padding: 0 16px;
}

#portfolio-single {
  display: flex;
  flex-direction: row;
  max-width: 1600px;
}

#contact-form {
  margin-top: 32px;
}

#contact-form .button {
  margin-top: 16px;
}

#about-wrapper {
  margin: 0 auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: min(800px, 95%);
  gap: 32px;
}
/* PROGRESS BAR */

#task-progress {
  border: none;
  height: 4px;
  margin-top: 4px;
  width: 100%;
}

progress::-moz-progress-bar {
  background: #7a29e9;
}
progress::-webkit-progress-value {
  background: #7a29e9;
}
progress {
  color: #7a29e9;
}

/* MISC */

.single-article-wrapper h4 {
  text-align: left;
}
