* {
    margin: 0;
    padding: 0;
    
}

img {
    display: block;
    max-width: 100%;
}

li {
    list-style: none;
}

body {
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 1px;
    background: url("Imagens/bcg.jpg") no-repeat top center;
    background-attachment: fixed;
    background-size: cover;
    display: grid;
    align-items: center;
    justify-items: center;
    color: gray;
}

body::-webkit-scrollbar {
    width: 12px;
  }
  
  body::-webkit-scrollbar-track {
    background: rgb(43, 43, 43);
  }
  
  body::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    
  }


.container {
    padding: 0 16px;

}

.title {
    font-size: 36px;
    font-weight: normal;
}

.profile {
    max-width: 452px;
    box-sizing: border-box;
    margin: 0 auto;
}

.box {
    background: rgba(255, 255, 255, 0.897);
    padding: 4rem;
    box-shadow: 2px 2px 16px rgba(0, 0, 0, 0.75);
    border-radius: 50px;
    text-align: center;
    margin-top: 4rem;
}

.profile-pic {
    border-radius: 50%;
    width: 300px;
    margin: 0 auto 1rem auto;
}

.div-curriculo {
    padding-top: 1rem;
}

.curriculo {
    text-decoration: none;
    color: #606060;
    font-size: 30px;
    transition: all 600ms cubic-bezier(0, 0, 0, 0.8);
}

.curriculo:hover {
    color: rgb(42, 148, 59);
    text-shadow: 5px 5px 15px rgb(0, 0, 0);
    font-size: 35px;
}

.curriculo:active {
    color: rgba(255, 255, 255, 1);
    text-shadow: 0px 0px 0px ;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    width: 270px;
    margin-left: 35px;
    margin-right: 20px;
    margin-top: 30px;
    transition: all 600ms cubic-bezier(0.2, 0, 0, 0.8);
}

.linkedin-logo {
    transition: all 600ms cubic-bezier(0.2, 0, 0, 0.8);
}

.linkedin-logo:hover {
    transition:0.5s;
    filter: opacity(0.4) drop-shadow(0 0 0 rgb(37, 18, 207));
    -webkit-transform: scale(1.1);
}

.instagram-logo {
    transition: all 600ms cubic-bezier(0.2, 0, 0, 0.8);
}

.instagram-logo:hover{
    transition-duration: 0.5s;
    filter: opacity(0.4) drop-shadow(0 0 0 rgb(247, 62, 123));
    -webkit-transform: scale(1.1)
}

.whatsapp-logo{
    transition: all 600ms cubic-bezier(0.2, 0, 0, 0.8);
}

.whatsapp-logo:hover {
    filter: opacity(0.4) drop-shadow(0 0 0 rgb(62, 233, 113));
    transition-duration: 0.5s;
    -webkit-transform: scale(1.1);
}

.profile span {
    font-size: 24px;
}

.profile p {
    font-size: 18px;
    
}

.redes-sociais li {
    margin-right: 1rem;
}

.portfolio {
   max-width: 886px; 
   
   box-sizing: border-box;
 }

 .portfolio li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 1rem;
    color: #606060;
 }

 .portfolio ul {
    margin-top: 2rem;
 }

 .img {
    max-width: 350px;
    
 }

.portfolio h2 {
    font-weight: normal;
    margin-bottom: 1rem;
}

.portfolio li + li {
    margin-top: 2rem;
}

.portfolio img {
    border-radius: 10px;
}

.nome {
    margin-top: 50vh;
    padding-bottom: 50vh;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 16px black;
    text-align: center;
}


@media (max-width: 600px) {


    .redes-sociais {
        padding-left: 15px;
    }


    .box {
        padding: 2rem ;

    }

    box:first-child {
        padding: 3rem;
    }

    .portfolio li {
        grid-template-columns: 1fr;
    }
}