/* Aca nos enfocamos en dispositivos moviles*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@700&family=Roboto&family=Source+Sans+Pro:wght@300;400&display=swap');

.profile-info{
    margin-bottom: 25px;
}
.profile-img {
    width: 45%;
    max-width: 350px;
}

.profile-img-section{
    position: relative;    
}
.profile-img-line{
    background-color: var(--primary-color);
    height: 15px;
    position: absolute;    
    width: 100%;
    left: 0;
    bottom: 0;
}

.profile {
    text-align: center;
}

.profile-title {
font-size: 35px;
font-weight: bold;
margin: 0;
color: var(--primary-color);
font-family: 'Noto Sans', sans-serif;
}

.profile-details{
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 400px;
    margin: 20px auto;
}

.profile-btn{
    background-color: var(--primary-color);
    color: var(--text-color-inverse);
    border: none;
    font-size: 20px;
    padding: 0.5em 1em;
    border-radius: 20px;
    cursor: pointer;
}

.profile-btn:hover{
    filter: brightness(150%);

}



/* Aca nos enfocamos en dispositivos de Escritorio*/


@media (min-width: 950px){

    .profile-info{
        margin-bottom: 0px;
    }
    .profile-img {
        width: 100%;
        max-width: 350px;
        transform: scaleX(-1)
    }
    
    .profile {
        text-align: left;
        display: flex;
        justify-content: space-between;
        max-width: 980px;
        margin: 0 auto;
        align-items: center;
    }
    
    .profile-title {
    font-size: 50px;
    }
    
    .profile-details{
        font-size: 20px;
        margin: 25px 0;
    }
    
    .profile-btn{
        font-size: 28px;
    }

}