*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body
{
	background-image: url("../images/pattern-background-mobile.svg");
	background-repeat: no-repeat;
	background-color:  #E0E8FF;
	background-position: center;
	font-size: 16px;
	font-family: 'Red Hat Display', sans-serif;
	background-size: cover;
	width: 100%;
	height: auto;
	overflow: hidden;
}
.container
{
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center; 
	padding: 2rem; 
}
.card
{
	background-color: white;
	border-radius: 1.2rem;
	overflow: hidden;
}
img
{
	max-width: 100%;
	display: block;
}
.card-content
{
	text-align: center;
}
h1
{
	font-size: 1.3rem; 
	font-weight: 900;
}
.title
{
	padding: 1.4rem;
	color: #1F2F56;
}
.paragraph
{
	padding: 0rem 2.2rem 2.2rem;
	color: #7280A7;
}
.p
{
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5rem;
}
.Annual-Plan
{
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	padding: 0rem 2rem 1rem;
}
.Plan
{
	color: #1F2F56;
	font-weight: 900;
}
.Annual
{
	font-size: 14px;
	line-height: 1.5rem;
	color: #7280A7;
	padding: 0rem 2rem;
}
.year
{
	font-size: 14px;
	font-weight: 700;
}
.change
{
	padding-top: .9rem;
	font-size: 13px;
	font-weight: 700;
}
.button-pay
{
	text-align: center;
	padding: .8rem;
	background-color: #3829E0;
	margin: 1rem;
	border-radius: .5rem;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 20px 30px 0 rgba(0, 0, 0, 0.19);
}
a.pay
{
	font-weight: 900;
	font-size: 15px;
	color: white;
	text-decoration: none;
}
.button-cancel
{
	padding: .2em;
	padding-bottom: 2rem;
}
a.cancel
{
	font-weight: 900;
	font-size: 15px;
	color: #7280A7;
	text-decoration: none
}
a:hover
{
	text-decoration: none;
	opacity: 0.75;
}
.button-pay:hover
{
	opacity: 0.75;
}
.cancel:hover
{
	color: black;
}
.attribution 
{ 
	font-size: 11px; 
	text-align: center; 
}
.attribution a 
{ 
	color: hsl(228, 45%, 44%); 
}

@media screen and (min-width: 600px)
{
  body
  {
		background-image: url("../images/pattern-background-desktop.svg");
		height: 300px;
		
  }
	.container
	{
		position: absolute;
		left: 50%;
   		top: 50%;
  		transform: translate(-50%, -50%);
	}
	h1
  	{
		 font-size: 1.6rem; 
  	}
	.card-content
	{
		padding: 1.5rem;
	}
	.change
	{
		margin-left: 3.4rem;
	}
	.button-pay
	{
		text-align: center;
	}
	.attribution 
	{ 
		font-size: 11px; 
		text-align: center; 
		padding-top: 40rem; 
	}
	.attribution a 
	{ 
		color: hsl(228, 45%, 44%); 
	}
	.button-cancel
	{
		padding: .2em;
		padding-bottom: 0rem;
	}
}


