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

button {
  cursor: pointer;
  border: none;
}

li {
  list-style-position: inside;
  padding-left: 2rem;
  text-indent: -2rem;
}

/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* Global styles*/
html {
  font-size: 62.5%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  color: #000;
  background-color: #fff;
}

.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  background-color: antiquewhite;
  padding: 2rem 0;
}

article {
  flex-basis: 30rem;
  height: 50rem;
  border-radius: 1.5rem;
  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 2rem;
  gap: 1rem;
}

h2 {
  font-weight: 600;
  font-size: 2.4rem;
  width: 100%;
  text-align: center;
}

h3 {
  font-weight: 700;
  color: #111111;
  font-size: 3.2rem;
}

li {
  color: #717171;
  font-size: 1.5rem;
}

.free-price,
.master-price,
.sea-boss-price {
  display: flex;
  gap: 0.5rem;
}

.free-price p,
.master-price p,
.sea-boss-price p {
  font-weight: 550;
  color: #666666;
  font-size: 2rem;
  align-self: end;
}

.free-description,
.master-description,
.sea-boss-description {
  font-weight: 450;
  color: #444333;
  font-size: 1.6rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

button {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  padding: 1.5rem 4rem;
  border-radius: 1rem;
}

.free-btn {
  background-color: #3b82f6;
}

.master-btn {
  background-color: #6d28d9;
}

.sea-boss-btn {
  background-color: #10b981;
}

.free-title,
.master-title,
.sea-boss-title {
  color: #ffffff;
  flex-basis: 30%;
  align-self: stretch;
  border-radius: 1.5rem 1.5rem 0 0;
  display: flex;
  align-items: center;
}

.free-title {
  background-color: #3b82f6;
}
.master-title {
  background-color: #6d28d9;
}
.sea-boss-title {
  background-color: #10b981;
}
