/* font family */
@font-face {
  font-family: "Outfit Vera Serif Bold";
  src: url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
}
@font-face {
  font-family: "Young Serif Bold";
  src: url("https://fonts.googleapis.com/css2?family=Young+Serif&display=swap");
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: hsl(330, 100%, 98%);
  min-height: 100vh;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  font-family: "Young Serif";
}
main {
  background-color: white;
  width: 70%;
  min-height: 100vh;
  margin: 20px 0;
  border-radius: 12px;
}
.container {
  margin: 2%;
  max-width: 1440px;
  min-width: 375px;
  padding: 10px 20px;
}
.headerTitle {
  color: hsl(332, 51%, 32%);
  margin: 15px 0;
  font-family: "Outfit", sans-serif;
  font-size: 30px;
  text-transform: capitalize;
}
.listItems {
  background-color: hsl(330, 100%, 98%);
  border-radius: 10px;
  padding: 20px 40px;
  margin: 40px 20px;
}
ul {
  list-style-position: inside;
  font-family: "Outfit sanserif", sans-serif;
  font-weight: 600;
}
li {
  margin: 20px 0;
  color: hsl(30, 10%, 34%);
  padding: 0 10px;
}

header {
  margin: 30px;
}
header img {
  border-radius: 10px;
}
.title {
  font-size: 40px;
  font-weight: 700;
  margin: 20px 0;
}
.subheading {
  color: hsl(24, 5%, 18%);
}
.hr {
  background-color: rgb(201, 200, 200);
}
table {
  border-collapse: collapse;
  margin: 20px;
  width: 100%;
}
th,
td {
  border-bottom: 1px solid rgb(160 160 160);
  padding: 8px 10px;
  color: hsl(24, 5%, 18%);}
td:nth-of-type(even) {
  color: hsl(332, 51%, 32%);
}
.attribution{
  text-align: center;
  margin: 15px;
}