html,
body {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;

  /* call another set of fonts */
  font-family: "Young Serif", serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background: linear-gradient(to right, hsl(46, 70%, 80%), hsl(328, 28%, 90%));
}

.container {
  background-color: white;
  border-radius: 20px;
  max-width: 400px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

img {
  width: 380px;
  height: auto;
  border-radius: 10px;
}
.zero-box {
  text-align: left;
  margin-left: 10px;
  margin-right: 10px;
}

h1 {
  font-size: 20px;
  font-weight: 500;
}

.container p {
  font-size: 8px;
  font-weight: 200;
}

.first-box {
  background-color: hsl(330, 100%, 98%);
  border-radius: 10px;
  width: 90%;
  padding-left: 20px;
  margin-top: 10px;
}

.first-box h3 {
  font-size: 12px;
  font-weight: 600;
  color: hsl(332, 51%, 32%);
}

.first-box li {
  font-size: 10px;
  font-weight: 400;
  color: hsl(14, 45%, 36%);
  gap: 10px;
  margin-top: 7px;
}

h2 {
  font-size: 18px;
  font-weight: 500;
  color: hsl(14, 45%, 36%);
}
.second-box {
  font-size: 10px;
  font-weight: 200;
  margin-right: 50px;
}

.third-box li {
  font-size: 8px;
  font-weight: 400;
  margin-right: 30px;
  margin-top: 10px;
}

table {
  width: 100%;
  margin-left: 10px;
  font-size: 8px;
  float: left;
  border-collapse: collapse;
}

table tr {
  border-bottom: 1px groove #000000;
}

tr:last-child {
  border-bottom: none;
}

td,
th {
  padding: 8px; /* space inside cells */
}

tr > :first-child {
  color: black;
  padding-right: 10px;
}

td {
  color: hsl(332, 51%, 32%);
}

footer {
  padding: 1.5rem 1rem;
  text-align: center;
}
.attribution {
  font-size: 11px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.attribution a {
  padding-top: 10px;
  color: hsl(0, 0%, 0%);
}

@media (max-width: 375px) {
  main {
    height: 100%;
    width: 100vw;
    margin: 0;
    border-radius: 0;
  }

  .container {
    height: 100%;
    width: 100%;
    border-radius: 0;
    margin: 0;
    padding: 0;
  }
  img {
    margin: 0;
    padding: 0;
    border-radius: 0;
  }
  .zero-box {
    margin: 20px;
    padding: 0;
  }

  .zero-box h1 {
    font-size: 30px;
    font-weight: 200;
  }

  .zero-box p {
    font-size: 15px;
    font-weight: 200;
  }

  .second-box {
    margin-left: 20px;
  }

  .second-box li {
    font-size: 14px;
    padding-top: 7px;
  }

  .third-box {
    margin-left: 20px;
  }

  .third-box ol {
    font-size: 18px;
  }

  .fourth-box {
    margin-left: 20px;
  }

  .fourth-box p {
    font-size: 14px;
    font-weight: 100;
  }

  table {
    font-size: 10px;
  }

  footer {
    padding-top: 10px;
    background-color: white;
    padding: 0.1rem 0.1rem;
  }
}
