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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 400px;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
}

.content {
    padding: 7%;
    text-align: center;
}

.title {
    color: hsl(223, 47%, 23%);
    font-weight: 900;
    margin-bottom: 20px;
}

.text {
    color: hsl(224, 23%, 55%);
    margin-bottom: 25px;
}

.plan {
    background-color: hsl(225, 100%, 98%);
    border-radius: 12px;
    display: flex;
    padding: 25px;
    align-items: center;
    justify-content: space-between;
}

.plan a {
    font-weight: 900;
    color: hsl(223, 47%, 23%);
}

.plan-box-left {
    display: flex;
    align-items: left;
    text-align: left;
}

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

.plan-box {
    margin-right: 00px;
}

.plan-box h5 {
    font-weight: 900;
    font-size: 15px;
    color: hsl(223, 47%, 23%);
}

.plan-box p {
    font-weight: 14px;
    color: hsl(224, 23%, 55%);
}

.plan-box a {
    font-weight: 900;
}

.proceed-btn a {
    display: block;
    background-color: hsl(245, 75%, 52%);
    color: white;
    text-decoration: none;
    margin: 20px 0;
    padding: 20px 0;
    border-radius: 12px;
    text-align: center;
}

.cancel-btn a {
    color: hsl(224, 23%, 55%);
    text-decoration: none;
    font-weight: 900;
}

/* Hover States */
.plan a:hover {
    color: hsl(245, 75%, 52%);
    text-decoration: none;
}

.proceed-btn a:hover {
    filter: brightness(200%);
}

.cancel-btn a:hover {
    color: hsl(223, 47%, 23%);
}

@media only screen and (max-width: 425px) {
    .body {
        background-image: url(/images/pattern-background-mobile.svg);
    }

    .container {
        max-width: 87%;
    }

    .text {
        font-size: 19px;
    }

    
}