* {
    margin: 0;
    padding: 0;
}

:root {
    --Pale-blue: hsl(225, 100%, 94%);
    --Bright-blue: hsl(245, 75%, 52%);
    --Very-pale-blue: hsl(225, 100%, 98%);
    --Desaturated-blue: hsl(224, 23%, 55%);
    --Dark-blue: hsl(223, 47%, 23%);
}

@font-face {
    font-family: 'Red Hat Display';
    src: url('./RedHatDisplay-VariableFont_wght.ttf')
}

body {
    font-family: 'Red Hat Display';
    background-image: url('./pattern-background-desktop.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-color: hsl(225, 100%, 94%);
    min-height: 100vh;
}

.parent-container {
    margin-top: 5%;
    margin-left: 35%;
    display: flex;
    flex-direction: column;
    width: 25rem;
    height: 37.5rem;
    border: 1px solid var(--Pale-blue);
    background-color: white;
    border-radius: .75rem;
}

.image-container {
    width: 100%;
    height: 30%;
}

.content-container {
    margin: 10%;
    height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.125rem;
}

.header,
.price-header {
    color: var(--Dark-blue);
    font-weight: 900;
}

.text {
    text-align: center;
}

.pricing {
    display: flex;
    height: 25%;
    width: 100%;
    background-color: var(--Very-pale-blue);
}

.pricing-details {
    display: flex;
    margin: 5%;
    width: 100%;
    align-items: center;
}

.pricing-left {
    height: 100%;
    display: flex;
    gap: 1.25rem;
}

.pricing-left>span {
    align-self: center;
}

.hero {
    width: 100%;
    height: 100%;
    border-radius: .75rem .75rem 0 0;
}

.music {
    height: 100%;
    width: min-content;
}

#pay {
    width: 100%;
    height: 2.5rem;
    color: white;
    font-weight: 900;
    background-color: var(--Bright-blue);
    border-radius: .75rem;
    border-style: none;
    border-color: white;
}

#link {
    color: var(--Bright-blue);
    text-decoration: underline;
    font-weight: 500;
}

#pay,
#link,
a:hover {
    cursor: pointer;
}

.text,
span>a,
#price {
    color: var(--Desaturated-blue);
}

.attribution {
    margin-top: 1.25rem;
    font-size: 11px;
    margin-left: 39%;
}

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