*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul{
  list-style: none;
}

h1{
  font-size: 40px;
  margin-top: 60px;
  text-align: center;
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.pricing-container{
  font-family: "Julius Sans One", sans-serif;
  width: 90%;
  margin: 40px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.pricing-card{
  text-align: left;
  box-sizing: content-box;
  padding: 10px 30px;
  border: 2px solid black;
  font-weight: bold;
  display: flex;
  gap: 20px;
  flex-direction: column;
  justify-content: space-between;
  flex: 0 0 200px;
  font-size: 18px;
  cursor: pointer;
  position: relative;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -2%;
  right: -5%;
  width: 100%;
  height: 100%;
  background-image: url(https://static.vecteezy.com/system/resources/previews/054/680/000/non_2x/pizza-slice-with-colorful-toppings-and-crispy-crust-high-resolution-food-photography-free-png.png);
  background-size: cover;
  background-color: #ff950053;
  background-position: 0%;
  opacity: 0.5;
  z-index: -1;
}

h2{
  font-size: 32px;
}

li{
  font-weight: bold;
  position: relative;
}

li::before{
  content: "";
  position: absolute;
  height: 100%;
  width: 2px;
  background-color: #3aa82d;
  left: -17px;
  top: 0;
}

.pro-plan li::before{
  background-color: #cb5e5e;
}

.premium-plan li::before{
  background-color: #b21dbc;
}

li:not(:last-child){
  margin-bottom: 10px;
}

.price{
  text-align: right;
  font-size: 20px;
  font-style: italic;
}

.basic-plan{
  order: 0;
}

.pro-plan{
  order: 1;
}

.premium-plan{
  order: 2;
}