/* GLOBAL */
html,
body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #191919;
}

main {
  flex: 1; /* zajmuje całą wolną przestrzeń, wypycha stopkę na dół */
}

.hero {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: fit-content;
  background-image: url("assets/gradient2.png");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 1000px 250px;
}

.hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-text {
  text-align: left;
}

.hero-image {
  height: 383px;
  width: 383px;
}

.hero .subheading {
  font-size: 16px;
  font-weight: 400;
  color: #575757;
  margin-bottom: 16px;
}

.hero .heading {
  font-size: 36px;
  font-weight: 500;
  color: #191919;
  margin-bottom: 16px;
}

.hero .description {
  font-size: 16px;
  font-weight: 500;
  color: #383838;
}
