:root {
--pale-blue: hsl(225, 100%, 94%);
--bright-blue: hsl(245, 75%, 52%);
--very-pale-blue: hsl(225, 100%, 98%);
--saturated-blue: hsl(224, 23%, 55%);
--dark-blue: hsl(223, 47%, 23%);
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    background-image: url(/images/pattern-background-desktop.svg);
    background-size: cover;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-family: 'Red Hat Display', sans-serif;
    min-height: 100vh;
    text-align: center;
}

.card {
    background-color: white;
    max-width: 25rem;
    border-radius: 1rem;
    box-shadow: 0 1rem 5rem var(--saturated-blue);
}

.banner {
    max-width: 25rem;
    border-radius: 1rem 1rem 0 0;
}

.text h1 {
    margin: 2rem 0 1rem 0 ;
    font-size: 1.5rem;
    font-weight: 900;
}

.text p {
    font-weight: 500;
    color: var(--saturated-blue);
    margin: 0 2rem;
}

.plan {
    display: flex;
    background-color: var(--very-pale-blue);
    margin: 1rem 2rem;
    border-radius: 1rem;
}

.plan img {
    display: flex;
    max-width: 3rem;
    max-height: 3rem;
    margin: 1rem;
}

.plan p {
    margin: 1rem 0.5rem;
    max-width: 10rem;
    color: var(--saturated-blue);
    font-weight: 500;
    text-align: left;
}

.plan p span {
    display: flex;
    align-items: center;
    color: black;
    font-weight: 900;
    line-height: 1.5rem;
}

.plan a {
    display: flex;
    align-items: center;
    padding-left: 4rem;
    font-weight: 700;
}

.plan a:hover {
    text-decoration: none;
    opacity: 0.5;
}

.payment-button {
    display: grid;
    grid-template-columns: 1fr;
    margin: 2rem 2rem;
    text-decoration: none;
}

.payment-button button {
    background-color: var(--bright-blue);
    color: white;
    font-weight: 700;
    border: none;
    padding: 1rem;
    border-radius: 1rem;
    cursor: pointer;
}

.payment-button button:hover {
    opacity: 0.5;
}

.cancel {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    padding-bottom: 3rem;
}

.cancel a {
    color: var(--saturated-blue);
    font-weight: 900;
    text-decoration: none;
}

.cancel a:hover {
    color: black;
}
