.banner{
    background-color: var(--color-background);
}

.banner__div{
    padding: 2em;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.banner__items{
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.banner__links{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.banner__profile{
    width: 400px;
    height: 400px;
}

.banner__name{
    font-size: 2em;
    color: var(--color-text-gold);
    font-weight: bold;
}

.banner__description{
    margin-top: 10px;
    font-size: 1em;
    color: var(--corlor-links);
}

.image_links{
    margin-top: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: space-between;
}


@media (max-width: 768px){
    .banner__div{
        display: flex;
        flex-direction: column;
    }
    
    .banner__profile{
        width: 300px;
        height: 300px;
        margin-bottom: 1em;
    }

    .banner__items{
        width: 90%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .banner__links{
        display: flex;
        align-items: center;
        justify-content: space-evenly;
    }
}