@import "./components/header.css";
@import "./components/common/i18.css";
@import "./components/common/navigation.css";
@import "./components/common/left-aside.css";
@import "./components/common/right-aside.css";
@import "./components/common/carusel.css";
@import "./components/common/specification.css";
@import "./components/footer.css";

.flex-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: clamp(1rem, 0.0313rem + 7.75vw, 8.75rem);
  text-transform: uppercase;
}
main {
  display: flex;
  flex: 1;
}

aside {
  flex: 1;
}

section {
  flex: 3;
}

.flex-item {
  padding: 10px;
  color: #fff;
  text-align: center;
  text-shadow: 4px 2px 0 rgba(0, 0, 0, 0.2);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background-color: transparent;*/
  background-image: linear-gradient(45deg, #84fab0, #8fd3f4);
}

.item-2 {
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, #84fab0, #8fd3f4);
}

.item-3 {
  display: flex;
  flex-direction: column;
  background: linear-gradient(45deg, #a6c0fe, #f68084);
}

.item-4 {
  display: flex;
  justify-content: center;
  background: linear-gradient(45deg, #d4fc79, #96e6a1);
}

@media screen and (max-width: 650px) {
  main {
    flex-direction: column;
  }

  section {
    order: -1;
  }
}

aside {
  flex: 1;
}

section {
  flex: 3;
}
.flex-item {
  text-shadow: none;
}


