.about {
    text-align: center;
    margin-top: 3ch;
    display: flex;
    flex-direction: column;
    /* background-color: #a0b9f1; */
}

.about-resume {
    width: fit-content;
    align-self: center;
    margin: 3ch;
    padding: 1.5ch 4ch;
    border: 2px solid grey;
    text-decoration: none;
    font-weight: 600
}

.about-resume:hover {
    background-color: rgb(194, 191, 187);
    box-shadow: grey 2px 4px 10px;
    transition: .5s;
}

.about-bio {
    display: flex;
    flex-wrap: wrap;
    align-self: center;
    width: 85%;
    align-items: center;
    justify-content:center;
    gap: 3ch;
}

.about-bio-description{
    letter-spacing: 2px;
    line-height: 2.5ch;
    max-width: 35ch;
}

.about-bio-image{
    box-shadow: 0 0 10px #646464;
}

.about-twitter {
    margin: 40px 0 0 0;
    /* background-color: #fff */
}

.gallery{
    padding:1px;
}

.gallery-cell{
    border-radius: 5px;
    background-color: #a0b9f1;
}

.tweets {
    display: flex;
    flex-direction: row;
    /* justify-content: space-around; */
    /* gap: 100px; */
    overflow: hidden;
    overflow-x: auto;
    margin: 0px auto;
    padding: 0 5px;
}



.tweets div {
    max-height: 350px;
    width: 100%
}


.gallery {
    /* background: #EEE; */
    margin: 0 0%;
    background-color: aliceblue;
    border-radius: 10px;

}

.gallery-cell {
    display: flex;
    /* width: 65%; */
    height: 300px;
    margin-right: 10px;
    /* background: #8C8; */
    counter-increment: gallery-cell;
}

.gallery-cell div {
    display: block;
    height: fit-content;
    align-self: center
}


@media screen and (min-width: 500px) {

    .tweets {
        margin: 0 10%;
    }

    .tweets div {
        width: 100%
    }

    .gallery {
        margin: 0 5%;
    }
}


@media screen and (min-width: 720px) {

    .tweets {
        margin: 0 20%;
    }

    .tweets div {
        width: 100%
    }

    .about-bio {
        align-self: center;
        width: 60%;
    }

    .gallery {
        margin: 0 10%;
    }
}


@media screen and (min-width: 1000px) {
    .tweets {
        margin: 0 30%;
    }

    blockquote {
        padding: 5ch
    }

    .gallery {
        margin: 0 0%;
    }
}