#about-intro {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
#about-intro img {
    max-width: 350px;
}
#about-list li {
    margin: 10px;
    margin-right: 0;
}
#about-list li::marker {
    content: "𓆩✧𓆪 ";
}


/* ===== buttons ===== */
#id-buttons {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    gap: 3px;
}


/* ===== faves ===== */
#pets, #games, #albums, #tv-movies {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}
.faves-item {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-direction: column;
    gap: 5px;
}
.faves-item img{
    max-width: 120px;
    height: auto;
    transition: transform .3s ease;
}
.faves-item p {
    display: block;
    max-width: 120px;
    margin: 0 auto;
    text-align: center;
}


/* ===== padding ===== */
#about-intro, #id-buttons, #pets, #games, #albums, #tv-movies {
    padding-bottom: 15px;
}

@media only screen and (max-width:767px) {
    #about-intro {
        flex-direction: column;
    }
}
@media screen and (max-width:600px) {
    .faves-item img, .faves-item p {
        max-width: 80px
    }
}