:root {
  --base-color-accent: #000000;
  --base-color-shade: #E0E0E0;
  --base-color-background: #FCFFF4;

  --base-fontFamily1: "indivisible", sans-serif;

  --base-fontFamily2: "inter-variable", sans-serif;
  --base-fontFamily2-settings: "slnt" 0, "wght" 400;
}
html, body {
  width: 100%;
  padding: 0;
  margin: 0;

  font-family: var(--base-fontFamily2);
  font-variation-settings: var(--base-fontFamily2-settings);

  background: var(--base-color-background);

  overflow-x: hidden;
}

* {
  text-transform: uppercase;
}

a {
  color: white;
  font-variation-settings: "slnt" 0, "wght" 600;
}

/* Headings */

h1, .u-heading--1 {
  margin: 0.2em 0;
  font-size: 8em;
  font-family: var(--base-fontFamily1);
  text-transform: uppercase;
}

@media screen and (max-width: 700px) {
  h1, .u-heading--1 {
    font-size: 4em;
  }
}

@media screen and (max-width: 500px) {
  h1, .u-heading--1 {
    font-size: 3em;
  }
}

h2, .u-heading--2 {
  margin: 0.2em 0;

  font-family: var(--base-fontFamily1);
  font-size: 2em;

  text-transform: uppercase;
}

/* Sizes */

.u-height--50px {
  height: 50px;
}

/* Buttons */

.button {
  padding: 1em 1.5em;
  background: black;
  color: white;

  font-family: var(--base-fontFamily2);
  font-variation-settings: var(--base-fontFamily2-settings);

  font-size: 1em;

  border: none;
  border-radius: 500px;
}
.hero {
  display: flex;
  height: 500px;

  align-items: center;
  justify-content: center;
}

.hero__content {
  text-align: center;
}

.hero__title {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 500px) {
  .hero__description {
    margin-top: 20px;
  }
}

.hero__cta {
  margin-top: 30px;
}

.hero__image {
  width: 80px;
  height: 80px;

  margin-right: 20px;

  background-image: url(01e2a7dd80a0ab8449f5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
}
.footer {
  width: 100%;
  padding: 100px 20px;

  background: var(--base-color-accent);
  color: white;

  box-sizing: border-box;
}


.layout--article {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 960px;
}

@media screen and (max-width: 500px) {
  .layout--article {
    width: 100%;
  }
}
.marquee {
  width: 100%;
  font-size: 3em;
  font-family: var(--base-fontFamily1);
  background: var(--base-color-accent);
  color: white;

  overflow: hidden;
}

.marquee__content {
  width: 100%;
  white-space: nowrap;

  animation-name: marquee;
  animation-duration: 30s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50%, 0);
  }
}

.marquee__content-block {
  display: inline-block;
  padding: 0 0.3em;
}
.product {
  display: flex;
  padding: 20px;
  width: 100%;
  height: 400px;

  box-sizing: border-box;

  border-bottom: 1px solid var(--base-color-shade);
}

.product:last-child {
  border: none;
}

@media screen and (max-width: 500px) {
  .product {
    display: block;
    height: unset;
  }
}

.product__image,
.product__meta {
  display: flex;
  width: 100%;
  align-items: center;
}

.product__image {
  margin-right: 40px;
  justify-content: center;
}

@media screen and (max-width: 500px) {
  .product__image {
    margin-right: unset;
    margin-bottom: 30px;
  }
}

.product__image img {
  width: 100%;
  height: 100%;

  max-width: min(350px, 50vw);
  object-fit: contain;
}

.product__meta-row {
  margin-bottom: 1em;
}

.product__meta-price {
  margin-top: 1em;
  font-variation-settings: "slnt" 0, "wght" 600;
}
