/* LANGS */
.langs {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    gap: 30px;
    margin-top: 80px;
}

.titulo-da-lang {
    color: var(--color-0);
    font-size: 1.5rem;
    font-weight: 700;
}

.langs__content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 0 60px;
    border-radius: 20px;
    overflow: hidden;
}

.linguagens {
    text-align: center;
    width: 120px;
    height: 130px;
    padding: 20px;
    margin: auto;
    border-radius: 20px;
}

.linguagens p {
    color: var(--color-0);
    font-weight: 700;
    margin-top: 15px;
}

.linguagens img {
    max-height: 50px;
}

.html {
    background-color: rgba(205, 94, 24, 0.114);
}

.css {
    background-color: rgba(30, 162, 174, 0.168);
}

.js {
    background-color: rgba(217, 225, 63, 0.141);
}

.github {
    background-color: rgba(255, 255, 255, 0.405);
}

.git {
    background-color: rgba(184, 60, 32, 0.196);
}

.tailwind {
    background-color: rgba(129, 223, 249, 0.164);
}

.react {
    background-color: rgba(28, 29, 36, 0.675);
}