@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Young+Serif&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: hsl(233, 47%, 7%);
    color: hsl(0, 0%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}
.card{
    background-color: hsl(244, 37%, 16%);
    width: 700px;
    height: 250px;
    display: flex;
    flex-direction: row-reverse;
    overflow: hidden;
    border-radius: 10px;
}
.container{
    background-size: cover;
    background-position: center;
    position: relative;
}
img{
    width: 350px;
    height: 250px;
    background-color: hsl(277, 64%, 61%);
}
.text{
    flex-direction: column;
    padding: 30px;
    padding-left: 40px;
    padding-right: 70px;
}
h3{
    font-family: "Inter", sans-serif;
    padding-bottom: 20px;
}
small{
    font-family: 'Lexend Deca', sans-serif; 
    font-weight: 100;
    color: hsla(0, 0%, 100%, 0.75);
    padding-bottom: 30px;
}
.card-stats {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;   
}
.stat-box {
    display: flex;
    flex-direction: column;   
    gap: 5px;             
}

.stat-number {
    font-size: 14px;         
    font-weight: 700;               
    color: hsl(0, 0%, 100%);     
}
.stat-label {
    font-family: 'Lexend Deca', sans-serif; 
    font-size: 7px;       
    text-transform: uppercase;     
    letter-spacing: 1px;            
    color: hsla(0, 0%, 100%, 0.6); 
}
