@import url("main.css");
h1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ff4040;
  font-style: italic;
}

.about {
  display: flex;
  margin-top: 30px;
  margin-bottom: 30px;
  margin-left: 5vw;
  margin-right: 5vw;
  background-color: #0e0c0d;
  border-radius: 2em;
  align-items: center;
  padding-right: minmax(30px, 30vw);
}
.about .element {
  padding: 10px;
}
.about .element .name {
  text-decoration: underline;
  font-weight: 600;
  font-size: 32px;
}
.about .element img {
  border-radius: 2em; border: yellow 6px solid
}
.about .element h4 {
  font-weight: normal;
}
.about .element:nth-child(1) {
  text-align: right;
  width: 40%;
}
.about .element:nth-child(3) {
  width: 40%;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2vw;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}
.products .product {
  list-style-position: inside;
  background-color: #0e0c0d;
  border-radius: 5%;
  padding: 40px 20px 40px 20px;
  font-size: 24px;
}
.products .product img {
  margin-top: 20px;
  width: 316px;
  height: 344px;
}

footer {
  text-align: center;
  margin: 24px;
  font-style: italic;
}/*# sourceMappingURL=index.css.map */