body {
    background-image: url(../img/pattern-background-desktop.svg);
    background-repeat: no-repeat;
    background-color: hsl(225, 100%, 94%);
    background-size: contain;
    font-family: 'Red Hat Display';
    display: flex;
    align-items: center;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    background-color: white;
    max-width: 24rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

h1 {
    padding-top: 30px;
    padding-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: hsl(223, 47%, 23%);
}

p {
    font-size: .9rem;
    color: hsl(224, 23%, 55%);
}

.first-paragraph {
    padding-bottom: 20px;
    text-align: center;
    max-width: 80%;
}

.annual-plan {
    display: flex;
    background-color: hsl(225, 100%, 98%);
    border-radius: 3%;
    padding: 20px;
}

.music-icon {
    margin-right: 1rem;
}

h2 {
    font-size: .9rem;
    color: hsl(223, 47%, 23%);
    font-weight: 900;
}

.annual-plan a {
    color: hsl(245, 75%, 52%);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: 6rem;
    font-size: .8rem;
    font-weight: 700;
}

.payment,
.cancel {
    text-decoration: none;
}

.payment {
    display: block;
    background-color: hsl(245, 75%, 52%);
    color: white;
    padding: 12px 90px;
    margin-top: 30px;
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.cancel {
    color: hsl(224, 23%, 55%);
    margin-top: 30px;
    margin-bottom: 40px;
    font-size: .8rem;
    font-weight: 700;
}

@media (max-width: 375px) {
    main {
        max-width: 90%;
    }

    .image {
        height: 180px;
    }

    h2 {
        font-size: .8rem;
    }
}