:root {
    --blue-50: hsl(225, 100%, 98%);
    --blue-100: hsl(225, 100%, 94%);
    --blue-700: hsl(245, 75%, 52%);
    --blue-950: hsl(223, 47%, 23%);
    --gray-600: hsl(224, 23%, 55%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Red Hat Display', sans-serif;
}

body {
    min-height: 100vh;
    background-image: url(./images/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-color: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-container {
    background-color: #FFF;
    width: 28.125rem;
    height: 43.5625rem;
    border-radius: 1.25rem;
}

.hero-img {
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

h1 {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--blue-950);
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 2rem auto;
}

.description-text {
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    color: var(--gray-600);
    width: 70%;
    margin: 0 auto;
    line-height: 1.65rem;
}

.plan-container {
    background-color: var(--blue-50);
    width: 22.125rem;
    height: 6.125rem;
    display: flex;
    align-items: center;
    margin: 2rem auto;
    border-radius: 0.6875rem;
}

.music-icon-container {
    margin-left: 1.3rem;
    margin-right: 1rem;
}

.bold-text {
    color: var(--blue-950);
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 0.3rem;
}

.price {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-600);
}

.text-date-container {
    margin-right: 5.5rem;
}

.change {
    text-decoration: none;
    font-size: 1rem;
    font-weight: 800;
    color: var(--blue-700);
    transition: all .1s ease-in;
    cursor: pointer;
}

.payment-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-btn {
    width: 22.125rem;
    height: 2rem;
    background-color: var(--blue-700);
    color: var(--blue-100);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 0.6875rem;
    box-shadow: 0px 8px 10px 1px rgba(0,0,0,0.72);
    transition: all .2s ease-in;
    cursor: pointer;
}

.payment-btn:hover {
    opacity: 0.6;
}

.cancel-btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto;
}

.cancel-btn {
    width: 22.125rem;
    height: 2rem;
    border: none;
    background-color: #FFF;
    color: var(--gray-600);
    font-size: 1rem;
    font-weight: 800;
    transition: all .1s ease-in;
    cursor: pointer;
}

.cancel-btn:hover {
    opacity: 0.6;
}
