@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto&family=Source+Sans+3:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --brandPrimaryColor: #1687aa;
    --brandSecondaryColor: #0b4455;
    --brandBlack: #000000;
    --brandWhite: #ffffff;
}

html{
    scroll-behavior: smooth;
}

a{
    list-style: none;
    text-decoration: none;
}
/* INMACULADO 1366 x 768 */

.profile{
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /* align-content: center; */
}

.mainProfile{
    width: 90%;
    height: 60%;
    /* border: 1px solid black; */
    margin: 7.2rem 0 0 0;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    
}

.descriptionProfile{
    width: 40%;
    height: auto;
    /* border: 1px solid red; */
}

.titleProfile{
    display: inline;
    font-size: 5.45rem;
    color: var(--brandSecondaryColor);
    text-transform: uppercase;
    font-family: 'Playfair Display', serif;
    font-weight: lighter;
    text-align: right;
    margin: -2rem 0 0 0;
    line-height: 7rem;
}

.paragraphProfile{
    display: inline;
    color: var(--brandSecondaryColor);
    font-size: 1.2rem;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 100;
    text-align: justify;
    /* border: 1px solid blue; */
    margin: 1rem 0 0 0;
    padding: 1rem 0 0 0;
    line-height: 1.6rem;
}

.imageProfile{
    width: 26%;
    height: auto;
    /* border: 1px solid green; */
    background-image: url('../images/foto_CV.jpg');
    background-size: cover;
    object-fit: cover;
}

.skillsProfile{
    width: 26%;
    height: auto;
    /* border: 1px solid yellow; */
    display: flex;
    flex-direction: column;
    align-content: space-between;
    flex-wrap: nowrap;
}

.subtitleProfile{
    width: 100%;
    height: auto;
    display: inline;
    color: var(--brandSecondaryColor);
    font-size: 2rem;
    font-family: 'Playfair Display', serif;
    font-weight: 200;
    font-style: italic;
    text-transform: uppercase;
    /* border: 1px solid red; */
    letter-spacing: 10px;
    margin: 0 0 1rem 0;
}

.skills{
    /* border: 1px solid black; */
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-content: space-between;


}

.skill{
    font-family: 'Source Sans 3', sans-serif;
    color: var(--brandSecondaryColor); 
    text-transform: uppercase;
    font-size: 2rem;
    line-height: 0.3rem;
    display: inline;
    margin: 1rem 0 ;
    cursor: pointer;
}

.light{
    font-style: lighter;
    font-weight: 100;
}

.regular{
    font-weight: 400;
}

.medium{
    font-weight: 600;
}

.bold{
    font-weight: 900;
}

