.introBanner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.introBanner .emptySpace {
    width: 100%;
}

.emptySpace.top {
    width: 100%;
    height: 200px;
}

.emptySpace.bottom {
    width: 100%;
    height: 100px;
}

.introBanner .about {
    max-width: 1280px;
    width: 100%;
}

.about .top {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}

.top .img {
    background-image: url('https://avatars.githubusercontent.com/u/29374798?v=4');
    background-size: cover;
    background-position: center;
    height: 250px;
    aspect-ratio: 1;
    margin: 20px;
    border-radius: 50%;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
}

.top .text {
    margin: 20px;
    max-width: 800px;
}

.top .text .name {
    font-size: 45px;
    margin-bottom: 16px;
}

.top .text .desc {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    font-style: italic;
    text-indent: 28px;
}

.text ul {}

.text li {
    padding: 5px 10px;
}

.text ul a {
    color: rgb(40, 40, 40)
}

.text ul a:visited {
    color: rgb(80, 80, 80)
}

@media screen and (max-width: 800px) {
    .introBanner .about {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .about .top {
        flex-direction: column;
        align-items: center;
        max-width: 600px;
    }

    .emptySpace.top {
        height:80px;
    }
}