@media (max-width: 1024px) {
    .meus-projetos {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
}
@media (max-width: 768px) {
    h2 {
        text-align: center;
        width: 100%;
        position: relative;
    }
    h2::after {
        display: none;
    }
    .conteudo-contato{
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .conteudo-contato img {
        display: none;
    }   
    .link-aside {
        font-size: 4rem;
    }
}
@media (max-width: 425px) {
    .menu {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
        background-color: var(--color-light-);
        padding: 12px;
        color: #FFF;
        font-size: 2.4rem;
    }
     nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        position: relative;
    }
    nav a {
        display: none;
        width: 100%;
        padding: 10px 0;
        margin: 4px 0;
    }

    nav a.active {
        display: block;
    }

    .menu {
        display: block;
    }
}