@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Outfit:wght@300;400;600&family=Red+Hat+Display:ital,wght@0,500;0,700;0,900;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&family=Outfit:wght@300;400;600&family=Red+Hat+Display:ital,wght@0,500;0,700;0,900;1,500;1,700;1,900&display=swap');

:root{
    /*Primary*/
    --very-dark-blue:hsl(233, 47%, 7%);
    --dark-desaturated-blue:hsl(244, 38%, 16%);
    --soft-violet:hsl(277, 64%, 61%, 0.5);
    /*Neutral*/
    --white:hsl(0, 0%, 100%);
    --slight--transparent--white:hsla(0, 0%, 100%, 0.75);
    --stat-heading:hsla(0, 0%, 100%, 0.6);

}

*{
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

body{
    width: 100vw;
    height: 100vh;
    font-size: 15px;
}

main{
    background-color: var(--very-dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
}

.absolute{
    position: absolute;
    width: 82.4%;
    height: 60%;
    border-radius: 8px;
    display: flex;
    right: 5%;
    top: 19.1%;
}

.izq{
    background-color: transparent;
    height: 100%;
    width: 55%;
}

.der{
    height: 100%;
    width:45%;
    background-color: var(--soft-violet);
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card{
    background-color: var(--dark-desaturated-blue);
    width: 90%;
    height: 60%;
    display: flex;
    border-radius: 8px;
    
}

.left{
    height: 100%;
    width: 55%;
    margin: 0 3rem 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}




.left article h1{
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    font-size: 40px;
    color: var(--white);
    margin-bottom: 1.2rem;

}


.left article span{
    color: hsl(277, 64%, 61%);
}

.left article p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: var(--slight--transparent--white) ;
}

.stats{
    display: flex;
    justify-content: space-between;
    width: 90%;
   
}

.stats div{
    display:flex;
    flex-direction: column;
}

.numero{
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: x-large;
}

.info{
    font-family: 'Lexend Deca',sans-serif;
    font-weight: 50;
    color: var(--stat-heading);
    text-transform: uppercase;
    font-size: small;
}


.right{
    width:45%;
    background-image: url(/images/image-header-desktop.jpg);
    background-size: cover;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    
}



.attribution { 
    font-size: 11px; 
    text-align: center; 
    align-self:auto;   
}

.attribution a { color: hsl(228, 45%, 44%); }