body{
    background-color: #313131;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    color: #f4f4f4;
    --highlight-color: #cba4cb;
}

.header {
width: 100%;
max-width: 900px;
padding: 8px;
box-sizing: border-box;
margin: 0 auto;
display: flex;
justify-content: flex-end;
}

.header__link{
    text-decoration: none;
    box-sizing: border-box;
    padding: 4px;
}

.header__link:hover{
    opacity: .6;
}
.header__link:focus{
    outline: none;
    background-color: rgba(108, 105, 105, 0.524);
    border-radius: 50%;
    padding-top: 6px;
}

.icone{
    width: 24px;
}

.main{
    width: 100%;
    max-width: 700px;
    padding: 8px;
    box-sizing: border-box;
    margin: 0 auto;
}

.profile{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile__photo{
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    border: 6px solid  #868686;
}

.profile__name{
    font-family: 'Damion', cursive;
    font-size: 52px;
    font-weight: 400;
    color: var(--highlight-color);
    margin: 16px 0;
}

.profile__description{
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    width: 100%;
    max-width: 450px;
    text-align: center;
}

.section{
    padding: 8px;
    width: 100%;
    max-width: 550px;
    margin: 24px auto;
    box-sizing: border-box;
}

.section__title{
    
    font-size: 22px;
    font-weight: 400;
    color: var(--highlight-color);
    margin: 16px 0;
}

.projects{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.project{
    background-color: #3b3b3b;
    padding: 8px;
    margin: 16px 0;
    box-sizing: border-box;
    border-radius: 3px;
    flex: 1 1 calc(50% - 16px);
}

.project__title{
    font-weight: 400;
    color: var(--highlight-color);
    margin: 8px 0;
}

.project__description{
    font-size: 14px;
    font-weight: 400;
    margin: 8px 0;
}

.footer{
    width: 100%;
    height: 42px;
    background-color:var(--highlight-color);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-shrink: 0;
    gap: 4px;
    position: fixed;
    bottom: 0;
    
}

.footer__span{
    font-weight: 400;
    font-size: 14px;
    color: #313131;
}

.footer__icon{
    width: 18px;
    animation: pulsate 1.2s infinite alternate;
}

@keyframes pulsate {
    0%{
        transform: scale(.8);
    }
    100%{
        transform: scale(1.2);
    }
}