@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Lexend+Deca&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--main-font);
}

.stats{
    font-family: 'Lexend Deca', sans-serif;
}

:root{
    --main-background: hsl(233, 47%, 7%);
    --card-background: hsl(244, 38%, 16%);
    --accent: hsl(277, 64%, 61%);
    --main-font:hsl(0, 0%, 100%);
    --main-paragraph: hsla(0, 0%, 100%, 0.75);
    --stat-headings: hsla(0, 0%, 100%, 0.6);
}

.background{
    display: flex;
    width: 100vw;
    height: 100vh;
    background: var(--main-background);
    justify-content: center;
    align-items: center;

}

.card{
    display: flex;
    flex-direction: row;
    width: 70vw;
    background: var(--card-background);
    border-radius: 7px;
}

.description{
    width: 50%;
    padding: 5rem;
    margin: 0 1rem 0 1rem;
}

.description h1{
    font-size: 2.2rem;
}

.description h1 span{
    font-size: 2.2rem;
    color: var(--accent);
}

.description .paragraph {
    color: var(--main-paragraph);
    margin: 1.5rem 1rem 6rem 0;  
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 1.2rem;
}

.stats {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin: 0 3rem 0 0;
}
.number {
    font-size: 1.5rem;
    font-weight: 700;
}
.text {
    text-transform: uppercase;
    color: var(--stat-headings);
    font-size: 10px;
    letter-spacing: 1.5px;
}

.image {
    border-radius: 0 7px 7px 0;
    width: 50%;
    background: url(images/image-header-desktop.jpg) center no-repeat;
    background-size: cover;
    
}
.overlay-1{
    width: 100%;
    height: 100%;
    background: hsla(277deg, 100%, 50%, 0.42);
    border-radius: 0 7px 7px 0;
}
.overlay-2{
    mix-blend-mode: color-burn;
    background-color: hsla(293deg, 42%, 35%, 0.24);
}