/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Here all the code written above is the code for reset the css which is applied by default by the browser */
/* now here onwards the real css begins */
html{
    font-family: 'Open sans', sans-serif;
    box-sizing: border-box; /*it means that if we are giving a size to a box the border size will be included*/
}
body{
    background-color: #60a9ff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.panel {
    background-color: whitesmoke;
    border-radius: 10px;
    padding: 15px 25px; 
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    text-align: center;
    /* text-transform: uppercase; */

}
.pricing-plan{
    border-bottom: 1px solid #92ccff;
}
.pricing-plan:last-child{
    border-bottom: none;
}
.pricing-img{
    margin: 25px 0px;
    max-width: 100%;
    height: 170px;
    width: 250px;
    border-radius: 20%;
    opacity: 0.8;
    border: 1px black solid;
}
.pricing-header{
    color: #888;
    font-weight: 600;
    letter-spacing: 1px;
}
.pricing-features{
    margin: 50px 0 25px;
    color: #016ff9;
}
.pricing-features-item{
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 12px;
    line-height: 1.5;
    padding: 15px 0;
    border-top: 1px solid #92ccff;
}
.pricing-features-item:last-child{
    border-bottom: 1px solid #92ccff;
}
.pricing-price{
    color: #016ff9;
    display: block;
    font-size: 28px;
    font-weight: 500;
}
.pricing-price-head{
    color: hsl(357, 100%, 68%);
    font-size: 20px;
    font-weight: 800;
    display: inline-flex;
}
.pricing-price-dist{
    color: #000000;
    display: block;
    font-size: 20px;
    font-weight: 100;
}
.pricing-features-item-location{
    font-weight: 800;
    letter-spacing: 1px;
    font-size: 15px;
    line-height: 1.5;
    padding: 10px 0;
    border-top: 1px solid #92ccff;
    border-bottom: 1px solid #92ccff;
    color: black;
}
.pricing-button{
    border: 1px solid #9dd1ff;
    border-radius: 10px;
    color: #348efe;
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    margin: 40px 0;
    transition: background-color 0.25s ease-in-out;
}
.pricing-button:hover{
    background-color: #93eafb;
}
.pricing-button:focus{
    background-color: #92ccff;
}
.pricing-button.is-featured{
    font-size: large;
    background-color: #48aaff;
    color: white;
}
.pricing-button.is-featured:hover, .pricing-button.is-featured:focus{
    background-color: #348efe;
}
.inbutton{
    display: flex;
    justify-content: space-around;
}
.inbutton button{
    padding: 10px 25px;
}

@media(min-width: 900px){
    .panel{
        flex-direction: row;
    }
    .pricing-price-head{
        display: none;
    }
    .pricing-plan{
        border-bottom: none;
        border-right: 1px solid #92ccff;
        padding: 25px 50px;
    }
    .pricing-plan:last-child{
        border-right: none;
    }
}