
  .attribution { font-size: 11px; text-align: center; }
  .attribution a { color: hsl(228, 45%, 44%); }

/* reset css */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
 }
 a {
	display: inline-block;
	text-decoration: none;
	color: inherit;
 }
 
 img {
	vertical-align: top;
 }
 
 ul li {
	list-style: none;
	padding-left: 0;
 }
 
 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
	font-family: inherit;
	font-size: inherit;
 }
 
 html,
 body {
	block-size: 100%;
 }

/* _______________________________________________ */


body{
  background: hsl(225, 100%, 94%) url("images/pattern-background-desktop.svg") no-repeat top right;
  background-size: color;
  font-family: "Red Hat Display", Arial, sans-serif;
  font-weight: 600;
}

p{
	color: hsl(224, 23%, 55%);
}

main{
	margin: 50px auto;
	width: 400px;
}

 .card{
  background-color: white;
  border-radius: 20px;
 }

 .card__header{
	height: 150px;
	background: url("images/illustration-hero.svg") no-repeat center;
	background-size: cover;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
 }

 section{
	text-align: center;
	padding: 30px;
 }

 section h2{
	margin-bottom: 20px;
	font-weight: 900;
	font-size: 24px;
	color: hsl(223, 47%, 23%);
 }

 h3{
	color: hsl(223, 47%, 23%);
 }

 .plan{
	display: flex;
	margin: 30px 0;
	background: hsl(225, 100%, 98%);
	border-radius: 10px;
	padding: 20px;
	justify-content: space-between;
	align-items: center;
 }


.link-button{
	background-color: hsl(245, 75%, 52%);
	padding: 10px;
	display: block;
	border-radius: 10px;
	color: white;
	box-shadow: 0 14px 18px rgba(0, 0, 0, 0.5);
	margin-bottom: 20px;
	font-weight: 600;
}

.link-button:hover{
	background-color:hsl(245, 67%, 60%);
}

#plan-price {
	flex-grow: 3;
	text-align: left;
	padding-left: 20px;
}

#plan-change{
	flex-grow: 1;
}

#plan-change a:hover{
	color:hsl(245, 67%, 60%);
	text-decoration: none;
}

#plan-change a{
color: hsl(245, 75%, 52%);
font-weight: 800;
text-decoration: underline;
}


.text-bold{
	font-weight: 800;
}

.text-bold:hover{
	color:hsl(223, 47%, 23%);
	cursor: pointer;
}

 