#about-me {
  min-height: calc(100vh - var(--nav-height) - var(--footer-height));
  background-color: var(--c1);
}

.about-me__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
  width: 90%;
  margin: 0 auto;
  padding: 30px 20px;
}

.about-me__info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-me__container h2 {
    font-size: 2.5em;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--c3);
    text-shadow: 
        0 0 2px var(--c3),
        0 0 1px var(--c3);
}

.about-me__profile {
  width: 200px;
  height: 200px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: width 1.5s, height 1s;
  filter: 
    drop-shadow(0px 0px 20px rgba(6, 9, 49, 0.74))
    hue-rotate(5deg);
}

.about-me__profile img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.about-me__profile:hover {
    width: 300px;
    height: 300px;
}

.about-me__description {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
}

.about-me__description p {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    width: 80%;
    color: var(--c2);
    text-align: left;
}

.about-me__description p:nth-child(2n) {
    text-align: right;
    color: var(--c4);
    font-weight: bold;
}

.about-me-skills {
    padding: 20px;
}

.about-me-skills ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 80px);
    gap: 50px;
    justify-content: center;
}

.about-me-skills h2 {
    margin-bottom: 60px;
}

.about-me-skills li {
    width: 80px;
    height: 80px;
    cursor: pointer;
    transition: transform 0.8s;
}

.about-me-skills li:hover {
    transform: scale(1.5);
}

.about-me-skills li img {
    width: 100%;
    height: 100%;
}

@media (max-width: 1070px) {
    .about-me__container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-me__container {
        grid-template-columns: 100%;
    }
    
    .about-me-skills ul {
        grid-template-columns: repeat(2, 80px);
    }
}