* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: "Poppins", sans-serif;
}

body {
    width: 100vw;
    min-height: 100vh;
}

/* Tirando o list das ul */
ul {
    list-style: none;
}

/* PARTE HEADER DA PÁGINA */
header {
    width: 100%;
    height: 4rem;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

header nav {
    display: flex;
    justify-content: center;
    height: 100%;
}

header .list-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.list-nav a {
    text-decoration: none;
    color: #000000;
    font-size: 0.9rem;
}

.list-nav a:hover {
    color: blueviolet;

    transition: color 1s;
}

/* PARTE PRINCIPAL DA PÁGINA */

main {
    width: 100%;
    min-height: calc(100vh - 7rem);

    padding: 3rem 4rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container {
    display: grid;

    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

/* SECTIONS CRIADA NO MAIN */
.main-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image img {
    width: 300px;

    border: 2px solid #6753c0;

    border-radius: 100%;
    padding: 1rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    width: 100%;

    gap: 2rem;
}

.main-content article {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* ARTICLE CRIADAS DENTRO DAS SECTIONS */
.container-info {
    display: grid;
    
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

h1 {
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 4.5rem;
}

h1 span {
    display: inline-block;
    color: #6753c0;
}

h2 {
    color: #6753c0;
}


/* ARTICLE HOBBIES */
.profile-hobbies {
    padding: 1rem;
    background-color: #6753c038;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.profile-hobbies p {
    font-size: 15px;
}

/* ARTICLE SKILLS */
.profile-skills {
    padding: 1rem;
    background-color: #6753c038;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
}

.profile-skills ul{
    display: flex;
    flex-wrap: wrap;

    gap: 1rem;
}

.profile-skills ul li {
    display: flex;
    max-width: 150px;
    padding: 0.5rem;
    gap: 8px;
    border-radius: 5px;

    font-size: 14px;
}

.profile-skills img {
    width: 20px;

    display: flex;
    align-items: center;
}

/* Estilizando os icones das skills */

.icon-html {
    background-color: #e34f2675;

    color: #222222;
    font-weight: 500;
}

.icon-css {
    background-color: #1573b65d;

    color: #222222;
    font-weight: 500;
}

.icon-js {
    background-color: #f7de1e75;

    color: #222222;
    font-weight: 500;
}

.icon-react {
    background-color: #61dafb6e;

    color: #222222;
    font-weight: 500;
}

.icon-java {
    background-color: #00739671;

    color: #222222;
    font-weight: 500;
}

/* PARTE FOOTER DA PÁGINA SOBRE MIM */

footer {
    font-size: 13px;

    width: 100%;
    height: 2rem;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


@media (max-width: 900px) {
    body {
        width: 100%;
    }

    header {
        height: auto;
        padding: 1rem 0;
    }

    header .list-nav {
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    main {
        padding: 2rem;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }

    .container-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    h1 {
        font-size: 2.8rem;
        line-height: 3.2rem;
    }

    .profile-skills ul {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    header .list-nav {
        gap: 1rem;
        padding: 0 1rem;
    }

    .list-nav a {
        font-size: 0.8rem;
    }

    main {
        padding: 1.5rem 1rem;
    }

    .main-image img {
        width: 220px;
        padding: 0.7rem;
    }

    h1 {
        font-size: 2rem;
        line-height: 2.4rem;
        letter-spacing: 2px;
    }

    .profile-hobbies p,
    .profile-about p {
        font-size: 14px;
    }

    footer {
        height: auto;
        padding: 1rem;
        text-align: center;
        gap: 0.3rem;
    }
}