@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&family=Josefin+Slab:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Mulish:ital,wght@0,200;0,300;0,400;0,500;1,200;1,300;1,400;1,500&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Asap:wght@700&family=Nunito:wght@700&family=Yellowtail&display=swap');


@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.0-2/css/all.min.css");

* {
    margin: 0;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
}

li {
    list-style: none;
}


body {
    font-family: mulish;
    background:  url(img/img-bg-02.jpg) no-repeat top center;
    background-attachment: fixed;
    background-size: cover;
    display: grid;
    align-items: center;
    justify-items: center;
    height: 100vh;
    color: #aeaeae;
    animation: zoom 3s;
}

@keyframes zoom{
    0%{
        transform: scale(1.3);

    }
    100%{
        transform: scale(1);
    }


}

.container {
    padding: 0 16px;
}

.title {
    font-size: 36px;
    font-weight: normal;
}

.box {
    max-width: 452px;
    box-sizing: border-box;
    margin: 0 auto;
    justify-items: center;
}

.box {
    background:#eee;
    padding: 4rem;
    box-shadow:  2px 2px 16px rgba 0,0,0,0.16 ;
    border-radius: 50px;
    text-align: center;
    margin-top: 8rem;
}



.foto {
    border-radius: 50px;
    margin: 0 auto 2rem auto; 
}



.box span{
    font-size: 24px;
}

.box p {
    font-size: 18px;
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.redes-sociais {
    display: flex;
    justify-content: center;
    align-items: center;
}

.redes-sociais li {
    margin-right: 1em;  
}



.portifolio-box {
    background: #eee;
    max-width: 886px ;
    margin:8rem 0;
    padding: 4rem;
    box-shadow:  2px 2px 16px rgba 0,0,0,0.16 ;
    border-radius: 50px;
    text-align: center;
    box-sizing: border-box;
}

.portifolio-box ul {
    margin-top: 3rem;
}

.portifolio-box li {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 1rem;
    color: #606060;
}

.portifolio-box li + li {
    margin-top:2rem;
}

.img-portifolio {
    border-radius: 10px;
}

.portifolio-box h2 {
    font-weight: normal;
    margin-bottom: 3px;
}

.copyright {
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 16px black;
    margin-bottom: 25vh ;
    text-align: center;
    padding-bottom: 25vh;
}


/*responsivo*/

@media (max-width: 600px) {
    body {
        background-attachment: initial;
        background-size: contain;
        background-color: #f0e6da;
    }
    .box {
        padding: 2rem;
        margin-top: 4rem;
        border-radius: 30px;
    }

    .box:first-child {
        padding: 3rem;
    }

    .portifolio-box ul {
        margin-top: 1rem;
    }
    .portifolio-box li {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .portifolio-box li div {
        max-width: 448px;
    }

    .copyright {
        font-size: 18px;
        color: #606060;
        margin: 0;
        padding: 4rem 0;
    }


}