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

body {
    font-family: 'Inter', sans-serif;
    background-color: #0A0C1B;
    color: white;
    font-size: 15px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    background-color: hsl(244, 38%, 16%);
    display: flex;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1100px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-content{
    padding: 60px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-content h1{
    font-size: 32px;
    margin-bottom: 25px;
    color: white;
}

.card-content h1 .highlight{
    color: hsl(277, 64%, 61%);
}

.card-content p{
    color: hsla(0, 0%, 100%, 0.75);
    line-height: 1.6;
    margin-bottom: 50px;
}

.stats{
    display: flex;
    gap: 40px;
}

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

.stat h2{
    color: white;
    font-size: 24px;
}

.stat p{
    color: hsla(0, 0%, 100%, 0.6);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.card-image{
    flex: 1;
    position: relative;
}

.card-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(277, 64%, 61%, 0.6);
}

@media (max-width: 768px) {
    .card{
        flex-direction: column-reverse;
        text-align: center;
    }

    .card-content{
        padding: 30px;
    }

    .stats{
        flex-direction: column;
        gap: 20px;
    }
}