@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
body {
    background: hsl(225, 100%, 94%) url(../img/pattern-background-mobile.svg) top / contain no-repeat;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "red hat display";
}
.order-summary {
    display: flex;
    flex-direction: column;
}
.first-col {
    background: url(../img/illustration-hero.svg) no-repeat center / cover;
    height: 150px;
    border-radius: 25px 25px 0 0;
}
.second-col {
    max-width: 300px;
    background-color: white;
    border-radius: 0 0 25px 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}
.summary-title {
    font-size: 22px;
    font-weight: 900;
}
.order-descreption {
    color: hsl(224, 23%, 55%);
    font-size: 16px;
    line-height: 1.5;
}
.payment-plan {
    width: 100%;
    background-color: hsl(225, 100%, 98%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
}
.idkwtci {
    display: flex;
    flex-direction: column;
    position: relative;
}
.payment-plan::before {
    content: "";
    display: block;
    width: 48px;
    height: 48px;
    background-image: url(../img/icon-music.svg);
    top: 50%;
    left: 0;
}
.payment-frequency {
    margin-bottom: 10px;
    font-weight: 700;
}
.payment-price {
    color: hsl(224, 23%, 55%);
}
.change-plan {
    font-weight: 500;
    color: hsl(245, 75%, 52%);
    text-decoration: underline;
    margin-left: 20px;
}
.change-plan:hover {
    color: hsla(245, 75%, 53%, 0.5);
    cursor: pointer;
}
button {
    width: 100%;
    height: 38px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
}
button:hover {
    cursor: pointer;
}
.proceed {
    background-color: hsl(245, 75%, 52%);
    color: white;
    box-shadow: 0 15px 10px hsla(0, 0%, 0%, .15);
}
.proceed:hover {
    background-color: hsla(245, 75%, 52%, .65);
}
.cancel {
    background-color: white;
    color: hsl(224, 23%, 55%);
}
.cancel:hover {
    color: black;
}

@media (min-width:650px) {
    body {
        background: hsl(225, 100%, 94%) url(../img/pattern-background-desktop.svg) top / contain no-repeat;
    }
    .order-summary {
        flex-direction: row;
    }
    .first-col {
        width: 300px;
        height: initial;
        border-radius: 25px 0 0 25px;
    }
    .second-col {
        border-radius: 0 25px 25px 0;
    }
}