: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%);
    --light-violet: #766cf1;
    --dark-blue: hsl(223, 47%, 23%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
}
body {
    font-family: "Red Hat Display", sans-serif;
    font-weight: 500;
}

main {
    background-color: var(--pale-blue);
    background-image: url("../images/pattern-background-mobile.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    min-height: 95vh;
    display: flex;
    align-items: center;
}

.main-container {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 16px 10px var(--pale-blue);
}

.hero-banner img {
    width: 100%;
}
.main-content {
    padding: 25px;
    font-size: 1.6rem;
}

.main-content-description {
    text-align: center;
}

.main-content-description h1 {
    font-weight: 900;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.main-content-description p {
    color: var(--desaturated-blue);
}

.price {
    margin-top: 30px;
    background-color: var(--very-pale-blue);
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

.price-info {
    display: flex;
    align-items: center;
}

.music-icon {
    margin-right: 15px;
}

.price-text-plan {
    font-weight: 700;
    color: var(--dark-blue);
}

.price-text-value {
    color: var(--desaturated-blue);
}

.price-link a {
    color: var(--bright-blue);
}

.price-link a:hover {
    text-decoration: none;
    color: var(--light-violet);
}

.links {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    text-align: center;
}

.main-btn {
    border: 0;
    cursor: pointer;
    border-radius: 10px;
    padding: 15px;
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    background-color: var(--bright-blue);
    box-shadow: 0 8px 16px -8px var(--bright-blue);
}

.main-btn:hover {
    background-color: var(--light-violet);
    box-shadow: 0 8px 16px -8px var(--light-violet);
}
.cancel-link {
    margin-top: 25px;
    color: var(--desaturated-blue);
    font-weight: 700;
    text-decoration: none;
}

.cancel-link:hover {
    color: var(--dark-blue);
}

footer {
    height: 5vh;
    background-color: var(--dark-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.attribution {
    font-size: 1.2rem;
    text-align: center;
}
.attribution a {
    font-weight: 700;
    color: white;
    text-decoration: none;
}
