.header {
  display: flex;
  align-items: center;
  max-width: 60%;
  width: 100%;
  justify-content: space-between;

  padding: 1rem 1.8rem;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  max-width: 75%;
  width: 100%;
}

.text-information {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  font-size: 2.2rem;
  padding: 2.4rem 1.8rem;

  color: var(--text-color);
}

.text-information label {
  color: var(--color-primary);
  text-decoration: underline;
  cursor: pointer;
}

.about-me-section {
  display: flex;
  flex-direction: column;
  gap: 2.6rem;
  max-width: 75%;
  width: 100%;

  margin-top: 3rem;
}

.about-me-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  padding: 2.4rem 1.8rem;
  list-style: none;

  font-weight: medium;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--text-color);
}

.about-me-info span:nth-child(1) {
  color: var(--color-primary);
  margin-right: 0.8rem;
  font-weight: bold;
}

/* ASIDE */

.aside-section {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  right: 0;
  top: 0;

  padding: 2.8rem 3.2rem;
}

.aside-section .website-name {
  writing-mode: vertical-rl;
  margin-top: 2rem;

  font-size: 5rem;
  font-weight: 300;

  transform: translateX(7px);
}

.aside-icon {
  height: 12rem;
  width: 12rem;

  stroke: #A37FF1;
}