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

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

:root {

    /*### Primary*/

    --light-red: hsl(0, 100%, 67%);
    --orange-yellow: hsl(39, 100%, 56%);
    --green-teal: hsl(166, 100%, 37%);
    --cobalt-blue: hsl(234, 85%, 45%);

    --light-slate-blue-background: hsl(252, 100%, 67%);
    --light-royal-blue-background: hsl(241, 81%, 54%);
    --violet-blue-circle: hsla(256, 72%, 46%, 1);
    --persian-blue-circle: hsla(241, 72%, 46%, 0);

    /*### Neutral*/

    --White: hsl(0, 0%, 100%);
    --Pale-blue: hsl(221, 100%, 96%);
    --Light-lavender: hsl(241, 100%, 89%);
    --Dark-gray-blue: hsl(224, 30%, 27%);
}


* { 
   padding: 0;
   margin: 0;
   box-sizing: border-box;
   font-family: "Hanken Grotesk", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--Pale-blue);
}

p {
    font-size: 18px;
}

 

.card {
    box-shadow: rgba(0, 0, 0, .24) 0px 3px 8px;
    border-radius: 2rem;
    width: 650px;
    background-color: var(--White);
}

.card-container {
    display: flex;
    justify-content: space-between;
}

.blue-card {
   width: 50%;
   padding: 1.5rem 2rem;
   border-radius: 2rem;
   display: flex;
   text-align: center;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   background: linear-gradient(to bottom, var(--light-slate-blue-background),var(--light-royal-blue-background));
}

.title {
    color: var(--Light-lavender);  
    margin-bottom: 1rem;  
}

.blue-card .circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--violet-blue-circle),var(--persian-blue-circle));
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.blue-card b {
    color: var(--White);
    font-size: 1.5rem;
    margin-top: 1rem;
}

.circle h1{
    color: var(--White);
    font-size: 4rem;
}

.circle p {
    color: var(--Light-lavender);
}

.gradient {
    color: var(--Light-lavender);
}

.gradient-info {
    color: var(--Light-lavender);
    width: 200px;
}

.white-card {
    width: 50%;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.white-card h3{
    color: black;
    font-weight: 800;
}

.rows {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.row {
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: space-between;
    padding: 1rem .5rem;
}

.row:nth-child(1) {
    background-color: hsla(0, 100%, 67%, .2);
}
.row:nth-child(1) .badge b {
    color: var(--light-red);
}

.row:nth-child(2) {
    background-color: hsla(39, 100%, 56%, .2);
}
.row:nth-child(2) .badge b {
    color: var(--orange-yellow);
}

.row:nth-child(3) {
    background-color: hsla(166, 100%, 37%, .2);
}
.row:nth-child(3) .badge b {
    color: var(--green-teal);
}

.row:nth-child(4) {
    background-color: hsla(234, 85%, 45%, .2);
}
.row:nth-child(4) .badge b {
    color: var(--cobalt-blue);
}

.badge {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.row p {
    color: gray;
}

.row p b {
    color: var(--Dark-gray-blue);
}

.btn {
    margin-top: auto;
    padding: 1rem;
    border: none;
    border-radius: 2rem;
    background-color: var(--Dark-gray-blue);
    cursor: pointer;
    font-size: 1rem;
    color: white;
}
.btn:hover {
    background: linear-gradient(to bottom, var(--light-slate-blue-background),var(--light-royal-blue-background));;
}

@media screen and (max-width:650px) {
    body{
        align-items: flex-start;
        background-color: white
    }

    .card {
        box-shadow: none;
    }

    .card-container {
        flex-direction: column;
    }

    .blue-card {
        border-radius: 0 0 1rem 1rem;
        width: 100%;
    }

    .gradient-info {
        width: 250px;
    }

    .white-card {
        width: 100%;
    }
}