.container {
    font-family: "Bai Jamjuree";
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

}

.info {
    width: 100%;
    max-width: 475px;

    margin: 2em;
    text-align: center;

}

.info_title {
    line-height: 1rem;
    font-size: 1rem;
    color: hsl(234, 12%, 34%);
}

.info_desc{
    color: hsl(234, 12%, 34%);
    font-weight: 400;
}

.cards {
    display: flex;
    flex-direction: column;
    margin: 1em;
    gap: 3.5rem;
    padding-bottom: 8em;

}

.card {
    background-color: hsl(0, 0%, 100%);
    line-height: 1rem;
    padding: 1em;
    padding-bottom: 7em;
    padding-right: 1.5em;
    position: relative;
    border-radius: 1em;
    box-shadow: 0.2em 0.2em 2em 0px hsl(234deg 5.52% 76.82%);
    min-width: 10rem;
}

.card:hover {
    box-shadow: 1.2em 1.2em 2em 1px hsl(234deg 5.52% 76.82%);
}


.card_img {
    position: absolute;
    right: 1.5em;
    bottom: 2em;

}

.card_desc {
    font-size: small;
    font-weight: bold;
    color: hsl(234, 12%, 34%);
}

.crad_1,
.card_2,
.card_3,
.card_4 {
    background-color: transparent;
    position: relative;
}


.card_1::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5em;
    /* jitni height chahiye */
    background-color: hsl(180, 62%, 55%);
    /* tumhara desired color */
    z-index: 0;
    border-radius: 2em;
}

.card_2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5em;
    /* jitni height chahiye */
    background-color: hsl(0, 78%, 62%);
    /* tumhara desired color */
    z-index: 0;
    border-radius: 2em;
}

.card_3::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5em;
    /* jitni height chahiye */
    background-color: hsl(34, 97%, 64%);
    /* tumhara desired color */
    z-index: 0;
    border-radius: 2em;
}

.card_4::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0.5em;
    /* jitni height chahiye */
    background-color: hsl(212, 86%, 64%);
    /* tumhara desired color */
    z-index: 0;
    border-radius: 2em;
}

.attribution {
      font-size: 1em;
      text-align: center;
    }

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

@media only screen and (min-width: 48rem) {
    .cards {
        width: 80%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding-bottom: 7em;
        gap: 2em;
        padding-bottom: 15em;

    }

    .card_1 {
        grid-column: 1;
        grid-row: 2;
    }

    .card_2 {
        grid-column: 2;
        transform: translateY(110px)
    }

    .card_3 {
        grid-column: 2;
        transform: translateY(110px);
    }

    .card_4 {
        grid-column: 3;
        grid-row: 2;
    }

    .info_title {
        font-size: x-large;
    }
}