* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 0 8px gray;
  background: lightblue;
}
body .header .right {
  margin-left: 50px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
body .header .right p {
  margin-right: 10px;
  cursor: pointer;
}
body .article {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  padding: 20px;
  box-shadow: 0 0 8px gray;
}
body .article p, body .article strong, body .article li {
  font-size: 16pt;
}
body .article li {
  margin-left: 20px;
}
body .article h2 {
  font-size: 19pt;
}
body .article h1 {
  font-size: 29pt;
}
body .article img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
body .article #prodpic {
  width: 30%;
}
body .article span {
  font-size: 20pt;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 3px;
}
body .article .forma {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: lightblue;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 4px gray;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
body .article .forma input {
  outline: none;
  border: none;
  background: white;
  font-size: 14pt;
  color: black;
  border-radius: 5px;
  padding: 10px;
  height: 2.5rem;
  margin-top: 10px;
}
body .article .forma button {
  border: none;
  background: red;
  font-size: 14pt;
  color: white;
  border-radius: 5px;
  padding: 10px;
  height: 2.5rem;
  margin-top: 10px;
  cursor: pointer;
  font-weight: 700;
}
body .article .comments h1 {
  background: lightblue;
}
body .article .comments .single-comment {
  display: grid;
  grid-template-columns: 10% 90%;
  gap: 10px;
  border-bottom: 1px solid black;
  padding-bottom: 10px;
}
body .article .comments .single-comment img {
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
body .article .comments .single-comment .comment-content {
  display: flex;
  flex-direction: column;
  justify-content: baseline;
  align-items: baseline;
}
body .article .comments .single-comment .comment-content p {
  font-size: 12pt;
}
body .footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 30px;
  background: lightblue;
}
body .footer a {
  font-size: 12pt;
  color: black;
}

@media screen and (max-width: 1400px) {
  body .article {
    width: 80%;
  }
}
@media screen and (max-width: 900px) {
  body .article {
    width: 100%;
  }
}
@media screen and (max-width: 720px) {
  body .header h1 {
    font-size: 22px;
  }
}
@media screen and (max-width: 621px) {
  body .header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  body .article h1 {
    font-size: 22pt;
  }
  body .article h2 {
    font-size: 17pt;
  }
  body .article p, body .article strong, body .article li {
    font-size: 13pt;
  }
  body .article .forma {
    width: 100%;
  }
  body .article .comments h1 {
    font-size: 22px;
  }
  body .article #prodpic {
    width: 45%;
  }
  body .article span {
    font-size: 17pt;
  }
}
@media screen and (max-width: 500px) {
  body .article .comments .single-comment {
    gap: 25px;
  }
  body .article .comments .single-comment .comment-content p {
    font-size: 10pt;
    width: 90%;
  }
  body .article h1 {
    font-size: 20pt;
  }
}/*# sourceMappingURL=style.css.map */