.about-me {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin: 30px 10px 10px 10px;
    width: 800px;
    max-width: 90%;
    border-top: solid 2px #FFFFFF;
    border-bottom: solid 2px #FFFFFF;
    padding: 10px;
}

.about-title {
    font-size: 2em;
}

.about-me-img {
    width: 200px;
    height: 200px;
    border-radius: 25%;
    margin-right: 20px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
    filter: grayscale(30%);
}

.about-content {
    display: flex;
    justify-content: flex-start;
}

.about-name {
    font-size: 1.25em;
    padding-top: 30px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.tecnologies {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 10px;
    padding-top: 30px;
    width: 100%;
    height: 120px;
}

.tecnologies-item {
    width: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.tecnologies-item img {
    width: 70px;
}

.tecnologies-title {
    font-size: 0.75em;
}

.anbima-link {
    color: #FFFFFF;
}

.anbima-link:hover {
    color: #00FA60;
}

.desktop {
    display: flex;
}

.mobile {
    display: none;
}

@media screen and (max-width: 901px) {
    .about-me img {
        width: 80px;
        height: 80px;
        margin-top: 5px;
    }

    .tecnologies {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 15px;
        padding-top: 10px;
        width: 100%;
        overflow: hidden;
        position: relative;
    }

    .tecnologies-item img {
        max-width: 60px;
        max-height: 60px;
    }

    .tecnologies-item {
        left: 100%;
        animation: autoRun 8s linear infinite;
        animation-delay: calc(1s * var(--position));
        position: absolute;
    }

    @keyframes autoRun{
        from{
            left: 100%;
        }to{
            left: -100%;
        }
    }

    .tecnologies-mask {
        z-index: 1;
        width: 100%;
        height: 100%;
        background-image: linear-gradient(
            to right,
            #303030,
            transparent 10% 90%,
            #303030
        );
    }
    
    .tecnologies-title {
        font-size: 0.6em;
    }

    .mobile {
        display: flex;
    }
    
    .desktop {
        display: none;
    }
}