@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');


body {
    margin: 0px;
    padding: 0px;
    font-family: "Bricolage Grotesque", sans-serif;
    color: rgb(31, 30, 30);
    background: linear-gradient(to left, rgb(212, 157, 157), rgb(149, 110, 201))
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;

}

.container-img img {
    width: 600px;
    height: 600px;
}

h1 {
    text-align: center;
    font-size: 50px;
    text-transform: uppercase;
}

h2 {
    text-align: center;
    font-size: 40px;
    text-transform: uppercase;
}

.container-name p {
    max-width: 650px;
    margin: 0;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    line-height: 19px;
}

.social-media a {
    text-decoration: none;
    color: rgb(11, 11, 11);
    font-weight: bold;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 10px solid black;
    margin: 5px;
    border-radius: 5px;
}

.link:hover {
    background-color: #0A66C2;
    color: white;
}

.git:hover {
    background-color: #0D1117;
    color: white;
}


.skills-area {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

}

.skill-name {
    display: flex;
    justify-content: center;
    align-items: center;
}



.skill-card2 {
    display: grid;
    grid-template-columns: 280px;
    gap: 20px;
    height: 300px;
    margin: 20px;
    background-image: url(36811583-my-css-for-websites-without-a-framework.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 3px 3px 4px purple;
}

.skill-card1 {
    display: grid;
    grid-template-columns: 280px;
    gap: 20px;
    height: 300px;
    margin: 20px;
    background-image: url(6wjOcf.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 3px 3px 4px orangered;


}

.skill-card4 {
    display: grid;
    grid-template-columns: 280px;
    gap: 20px;
    height: 300px;
    margin: 20px;
    background-image: url(ab3e593e0b1fc6efec8d662ab5c70741.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 3px 3px 4px #5584AE;

}

.skill-card3 {
    display: grid;
    grid-template-columns: 280px;
    gap: 20px;
    height: 300px;
    margin: 20px;
    background-image: url(R.jpeg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 3px 3px 4px yellow;
}

.skill-card1 { /* fazer a imagem dar uma leve leantada*/
  transition: 0.3s;
}

.skill-card1:hover {
  transform: translateY(-6px) scale(1.03);
}

.skill-card2 {
  transition: 0.3s;
}

.skill-card2:hover { 
  transform: translateY(-6px) scale(1.03);
}

.skill-card3 {
  transition: 0.3s;
}

.skill-card3:hover {
  transform: translateY(-6px) scale(1.03);
}

.skill-card4 {
  transition: 0.3s;
}

.skill-card4:hover {
  transform: translateY(-6px) scale(1.03);
}

.Skill-name h3 {
    text-align: center;
    text-transform: uppercase;
    font-size: 50px;
    color: black;
    font-style: italic;

}

p {
    text-align: center;
}

.skill-card1,
.skill-card2,
.skill-card3,
.skill-card4 {
    cursor: pointer;
}

.footer-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 20px 10px;
    
}

.footer-area h4 {
    margin-top: 35px;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: 1px 1px 2px black;
}



.area-social nav {
   display: inline-block;
   margin: 10px;

}

.area-social a {
    text-decoration: none;
    margin-left: 20px;
    color: #0D1117;
}

.area-social a:hover {
    border: 10px solid #2c64b7;
    background-color: #2c64b7;
    color: white;
    border-radius: 10px;
    
}

.text  {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-style: italic;
    margin-top: 10px;
}

.area-social {
  transition: 0.3s;
}

.area-social:hover {
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 768px) {

    .header-container {
        flex-direction: row;
        text-align: center;
    }

    .skill-name {
        flex-wrap: wrap;

    }

    .header {
        flex-direction: column;
        text-align: center;


    }
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 20px;
    }

    .skills img {
        width: 120px;
    }

}
