body {
    /* background: linear-gradient(180deg, #201e60, #000b81, #201e60); */
    background: #201e60;

    /* apliquei a fonte no site todo */
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
}


.funnel-display {
  font-family: "Funnel Display", sans-serif;
  font-optical-sizing: auto;
  /* font-weight: <weight>; */
  font-style: normal;
}

/* NAVBAR */

/* pra navbar não ocupar espaço da tela */
main {
    padding-top: 3%;
}

.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar {
    background-color: #0D0404;
}

.nav-link {
    color: #ffffff;
}

.nav-link.active {
    color: #8B0000;
}

.nav-link:hover {
    color: #ff4500;
}
 
.main > .about {
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-radius: 0.375rem;
    /* background: #201e60; */
    margin-top: 5vh;

    height: 100%;
    
    /* container da imagem */
    aside {
        padding-left: 9%;
        margin-left: 15%;
        padding-top: 9%;
        width: auto;
        height: auto;
    }

    img {
        max-width: 100%;
        height: auto;
        margin-bottom: 14%;
    }
    
    /* texto sobre mim */
    article {
        padding-top: 6%;
        padding-left: 4%;
        padding-right: 4%;

        p {
            color: whitesmoke;
        }
    }
 
}


.main > .skills {
    display: grid;
    grid-template-columns: auto;
    padding: 2.5rem;

    /* imagens das linguagens e frameworks/tecnologias */
    .languages, .tech {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-around;
        grid-column: span 2;
        padding: 25px;
        border-radius: 0.375rem; /* equivalente a rounded-2 */
        background: #04032b;
    }
}

 
.main > .projects {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 2.5rem;
    padding-right: 2.5rem;

    div > img {
        width: 100%;
        margin: auto;
    }
    .work, .education {
        width: auto;
        height: 70%;
        gap: 1vh;
        padding: 50px;
        padding-top: 5vh;
        margin-bottom: 5%;
        margin-right: 3%;
        border-radius: 0.375rem;
        /* background: #3e1313; */
        background: #04032b;
    }

    h3, p {
        color: whitesmoke;
    }

    .btn-custom {
        margin: auto auto;
        display: block;
        text-align: center;
    }
}
 
.main .project {
    border-radius: 0.375rem; /* equivalente a rounded-2 */
    margin-bottom: 5%;
    margin-right: 3%;
    padding: 5%;
    padding-top: 1vh;
    background: #04032b;

    /* deixa o link do tamanho da imagem */
    a {
        width: 64px;
        height: 64px;
    }

    h1 {
        color: #6082B6;
    }

    p {
        color: whitesmoke
    }
    strong {
        color: #6082B6;
    }
}

/* videos dos projetos */
.projects > div {
    margin-bottom: 5%;
    padding: 50px;
    padding-top: 1vh;
    border-radius: 0.375rem;
    background: #04032b;

    video {
        width: 100%;
        border: solid #000000;
    }
}

/* titulos amarelos */
.title {
    grid-column: span 2;
    text-align: center;
    color: white;
}

/* footer */

footer {
    background-color: #000000;
    color: #ffffff;
    padding-top: 5px;
    padding-bottom: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icons a {
    font-size: 2rem;
    color: whitesmoke;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ff4500 !important;
}

.social-icons a:active {
    color: #8B0000;
}


@media (max-width: 767px) {
    .navbar {
        text-align: center;
    }

    .navbar-nav {
        flex-direction: column;
    }

    .about aside img {
        width: 80%;
        margin: 0 auto;
    }

    .about article p {
        font-size: 1rem;
        padding: 10px;
    }

    .skills .languages img,
    .skills .tech img {
        width: 50px;
        margin: 5px;
    }

    .skills .title {
        font-size: 1.5rem;
    }

    .experience article,
    .projects article {
        padding: 15px;
    }

    .projects h1 {
        font-size: 1.5rem;
    }

    .btn-custom {
        font-size: 0.9rem;
        width: 100%;
    }

    .projects video {
        width: 100%;
    }

    .social-icons {
        flex-direction: row;
    }

    .social-icons a {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.2rem;
    }

    .about article p {
        font-size: 0.9rem !important;
        padding-top: 10vh;
    }

    .about aside img {
        width: 70%;
        height: 70%;
        padding-top: 10vh;
    }

    .skills .languages img,
    .skills .tech img {
        width: 40px;
    }

    .btn-custom {
        padding: 3%;
        font-size: 1rem !important;
    }

    .experience {
        width: 85vw;
    }

    .projects {
        display: flex !important;
        flex-flow: column nowrap;

        p {
            font-size: 0.9rem !important;
        }
    }
}
