@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
    background-color: #f2f2f2;
    font-family: 'Fredoka', sans-serif;
}

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

.card {
    width: 737px;
    height: 512px;
    display: flex;
}

.description {
    width: 100%;
    max-width: 50%;
    height: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    border-radius: 30px;
    padding: 20px 0px 20px 0px;
    background-image: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.description h1 {
    color: #EBF1FF;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.number {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(180deg, hsla(256, 72%, 46%, 0.7), hsla(241, 72%, 46%, 0));
}

.number h1 {
    color: #fff;
    font-size: 72px;
    font-weight: 600;
    text-align: center;
}

.number p {
    color: #EBF1FF;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
}

.great {
    gap: 10px;
    width: 75%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.great h2 {
    color: #EBF1FF;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.great p {
    color: #b9b9b9;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

/* Summary */
.summary {
    width: 100%;
    max-width: 50%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.title {
    width: 288px;
    height: auto;
}

.title h2 {
    color: #000000;
    font-size: 24px;
    font-weight: 600;
    text-align: start;
    opacity: 75%;
}

.list {
    gap: 20px;
    width: 288px;
    height: auto;
    display: flex;
    flex-direction: column;
    margin-top: 15px;
}

.items {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.2);
}

.left {
    gap: 10px;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left img {
    width: 20px;
    height: 23px;
}

.left .orange {
    color: #FF5757;
    font-size: 18px;
    font-weight: 600;
    text-align: start;
    opacity: 75%;
}

.left .yellow {
    color: #FFB01F;
    font-size: 18px;
    font-weight: 600;
    text-align: start;
    opacity: 75%;
}

.left .green {
    color: #00BD91;
    font-size: 18px;
    font-weight: 600;
    text-align: start;
    opacity: 75%;
}

.left .blue {
    color: #1125D4;
    font-size: 18px;
    font-weight: 600;
    text-align: start;
    opacity: 75%;
}

.rigth p span {
    color: #b9b9b9;
    opacity: 100%;
    font-weight: 600;
}

.summary button {
    width: 288px;
    height: auto;
    padding: 15px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 30px;
    background-color: hsl(224, 30%, 27%);
    cursor: pointer;
    margin-top: 50px;
    transition: .6s ease;
}

.summary button:hover {
    background-image: linear-gradient(hsl(252, 100%, 67%), hsl(241, 81%, 54%));
}

/* Responsive */
@media (max-width: 1024px) {
    .card {
        width: 90%;
        height: auto;
        flex-direction: column;
        align-items: center;
    }

    .description, .summary {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .number {
        width: 150px;
        height: 150px;
    }
    .number h1 {
        font-size: 50px;
    }
    .number p {
        font-size: 16px;
    }
    .great h2 {
        font-size: 28px;
    }
    .great p {
        font-size: 18px;
    }
    .title h2 {
        font-size: 20px;
    }
    .items {
        height: 50px;
    }
    .left p {
        font-size: 16px;
    }
    .summary button {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .main {
        height: auto;
        padding: 20px 0;
    }
    .description, .summary {
        padding: 20px;
    }
    .number {
        width: 120px;
        height: 120px;
    }
    .number h1 {
        font-size: 40px;
    }
    .number p {
        font-size: 14px;
    }
    .great h2 {
        font-size: 24px;
    }
    .great p {
        font-size: 16px;
    }
    .list {
        width: 100%;
    }
    .items {
        height: 45px;
        padding: 10px;
    }
    .left img {
        width: 18px;
        height: 20px;
    }
    .left p {
        font-size: 14px;
    }
    .rigth p {
        font-size: 14px;
    }
    .summary button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }
}
