@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");
body {
    margin: 0;
    padding: 100px;
    font-size: 15px;
    font-family: Montserrat, sans-serif;
    color: black;
    /* background: rgb(105, 249, 255);
    background: linear-gradient(45deg, rgba(105, 249, 255, 1) 0%, rgba(0, 174, 246, 1) 100%);
    background: rgb(105, 249, 255);
    background: linear-gradient(45deg, rgb(3, 115, 160) 0%, rgb(126, 209, 241) 100%);
    background-image: linear-gradient(to bottom right, #ff9eaa 0% 65%, #e860ff 95% 100%); */
    background: rgb(31, 38, 79);
    background: linear-gradient(45deg, rgba(31, 38, 79, 1) 0%, rgba(39, 144, 195, 1) 78%);
    background-position: center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    text-align: center;
}

.container {
    padding: 20px;
    max-width: 360px;
    box-sizing: border-box;
    overflow: hidden;
    background: white;
    box-shadow: 0px 1rem 1.5rem rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container p {
    padding: 0px 5px;
}

.container hr {
    border-top: 1px dashed black;
    margin: 0;
}

.plan-description {
    text-align: left;
    padding-left: 30px;
    margin-bottom: 20px;
}

.plan-description h4 {
    margin-bottom: 10px;
    text-transform: capitalize;
}

@media only screen and (max-width: 560px) {
    body {
        padding: 50px;
    }
}

@media only screen and (max-width: 460px) {
    body {
        padding: 30px;
    }
}

@media only screen and (max-width: 350px) {
    body {
        font-size: 14px;
        padding: 20px;
    }
    .container {
        padding: 15px;
    }
}