@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@500;700;800&display=swap');

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


body {
    background-color: hsl(221, 100%, 96%);
}

main {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.main_component {
    max-width: 400px;
    display: flex;
    border-radius: 20px;
    background-color: white;
}

.left_component {
    width: 50%;
    padding: 15px;
    border-radius: 20px;
    background-image: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}

.left_component>h1 {
    text-align: center;
    font-weight: 500;
    font-size: 15px;
    color: hsl(241, 100%, 89%);
}

.left_component h3 {
    text-align: center;
    color: white;
}

.para {
    text-align: center;
    font-weight: 500;
    font-size: 11px;
    margin: 10px auto;
    max-width: 90%;
    color: hsl(241, 100%, 89%);

}

.circle {
    border-radius: 50%;
    height: 110px;
    width: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto;
    background-image: linear-gradient(hsla(256, 72%, 46%, 1), hsla(241, 72%, 46%, 0));
}

.circle h2 {
    font-weight: 800;
    font-size: 40px;
    color: white;
}

.circle p {
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: hsl(241, 100%, 89%);
}

.right_component {
    width: 50%;
    padding: 15px;

}

.right_component>h1 {
    font-weight: 700;
    font-size: 15px;
}

.empty {
    width: 100%;
    padding: 6px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.empty span {
    font-weight: 500;
}

.empty_content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.empty_content img {
    width: 13px;
    height: 13px;

}

.empty h1 {
    font-size: 12px;
    font-weight: 500;

}

.empty p {
    font-weight: 700;
    font-size: 12px;
}

button {
    width: 100%;
    padding: 5px 20px;
    color: white;
    background-color: hsl(224, 30%, 27%);
    border-radius: 20px;
    outline: none;
    border: none;
    margin-top: 20px;
    cursor: pointer;


}
.data{
    margin-top: 1rem;
}
.empty:not(:first-child){
    margin-top: 1rem;
}
.main_component {
    box-shadow: 13px 13px hsla(241, 100%, 89%, 0.155);
}

@media (max-width:429px) {
    .main_component {

        flex-direction: column;
    }

    main {
        align-items: start;

    }

    .left_component {
        width: 100%;
        border-radius: 0 0 20px 20px;
    }

    .right_component {
        width: 100%;
    }

    .para {
        width: 55%;
    }
}