:root{
    --purple1: hsl(252, 100%, 67%);
    --blue1: hsl(241, 81%, 54%);
    --white1: hsl(0, 0%, 100%);
    --redC: hsl(0, 100%, 67%);
    --yellowC: hsl(39, 100%, 56%);
    --GreenC: hsl(166, 100%, 37%);
    --blueC: hsl(234, 85%, 45%);
}

body{
    background-color: hsl(221, 100%, 96%);
    display: flex;
    justify-content: center;
    align-items: center; 
    min-height: 100vh;
}

h1,h2,h3,p,button{
    font-family: "Hanken Grotesk", sans-serif;
    margin: 10px;
}
h1{
    color: var(--white1);
    font-size: 30px;
    font-weight: 800;
}
h2{
    font-size: 25px;
    font-weight: 700; 
}
p{
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

button{
    background-color:hsl(224, 30%, 27%);
    color: var(--white1);
    width: 280px;
    border: none;
    border-radius: 20px;
    display: block;
    padding: 20px 80px;
    margin: 20px auto;
}

.container{
    background-color: var(--white1);
    border-radius: 20px;
}
.info{
    background-image: linear-gradient(var(--purple1), var(--blue1));
    border-radius: 20px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
}
.info p, .info h2{
    color: hsl(241, 100%, 89%);
}
.circle{
    background-image: linear-gradient(hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
    border-radius: 50%;
    width: 150px; 
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.stats{
    width: auto;
    padding: 20px;

}
.stats h2, .stats p, .stats span{
    color: black;
}
span{
    font-weight: 700;
}
.stats p{
    text-align: right;
}
.card{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 10px;
    padding: 10px 20px;
    border-radius: 10px;
}
.card-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.card1{
    background-color: hsla(0, 100%, 67%, 0.1);
}
.card2{
    background-color: hsl(39, 100%, 56%, 0.1);
}
.card3{
    background-color: hsl(166, 100%, 37%, 0.1);
}
.card4{
    background-color: hsl(234, 85%, 45%, 0.1);
}

@media (min-width: 750px) {
    
    .container{
        display: flex;
        justify-content: center;
        align-items: center; 
    }
    .info{
        width: 300px;
    }
    .stats{
        width: 300px;
    }
    .card{
        width: 80%;
    }
}