body {
    background-image: url("images/pattern-background-desktop.svg");
    background-size: cover;
}

.mainContent{
    text-align: center;
    width: 350px;
    margin: 30%;
    margin-top: 10em;
    background-color: white;
    border-radius: 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.buying-plan {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    background-color: rgb(248, 250, 249);
    margin: 0px 25px;
}

.buying-plan a{
    margin-top: 2%;
    color: blue;
    font-weight: bolder;
    margin-right: 3%;
}

.annual-plan {
    font-weight: bolder;
    margin-right: 50px;
}

.annual-plan, .price{
    display: block;
}

.description {
    margin: 0 auto;
    padding-bottom: 2rem;
}

.description, .price {
    color: rgb(134, 165, 193);
    font-style: italic;
    font-size: 13px;
}

.big-image{
    width: 100%;
    border-top-left-radius: 10%;
    border-top-right-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

button{
    display: block;
    padding: 0.5rem 5rem;
    margin: 0.5rem 2rem;
    border-radius: 7%;
    font-weight: bolder;
    border: none;
    box-shadow: 5px 3px 3px rgb(182, 201, 244);
    color: white;
}

#proceed-pay {
    background-color: blue;
}
#proceed-pay:hover{
    transition: 500ms;
}

#cancel {
    background-color: white;
    padding-right: 7rem;
    box-shadow: none;
    color: rgb(117, 115, 115);
}

#cancel:hover{
    background-color: blue;
    box-shadow: 5px 3px 3px rgb(182, 201, 244);
    color:rgb(255, 255, 255);
    transition: 500ms;
}

#cancel span {
    margin-left: 0.7rem;
    text-align: center;
}

button:hover{
    font-size: 14px;
}

@media (max-width: 1200px) {
    .body {
        text-align: center;
        background-image: url("images/pattern-background-mobile.svg"); 
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .mainContent{
        width: 40%;
        margin: 35%;
        margin-top: 15em;
    }
    
    .description, .price{
        font-size: 10px;
    }

    .description {
        padding-bottom: 1rem;
    }
}

@media screen and (max-width: 650px){
    .mainContent{
        width: 65.5%;
        margin-left: 20%;
    }
}

@media screen and (max-width: 350px) {
    .mainContent {
        width: 77%;
        margin-left: 15%;
    }
}

@media screen and (min-width: 1200px) {
    .mainContent{
        margin: 40%;
        margin-top: 15em;
    }
}