* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-size: 0;
}

.wrapper {
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
  min-height: 100vh;
}

.header {
  font-size: 70px;
  font-weight: 600;
  text-align: center;
  background-image: linear-gradient(to bottom right, lightgreen, white);
  height: 200px;
  line-height: 200px;
  order: 1;
}

.footer {
  font-size: 70px;
  font-weight: 600;
  text-align: center;
  background-image: linear-gradient(to bottom right, pink, white);
  height: 200px;
  line-height: 200px;
}

.main-body {
  order: 2;
  flex: 1 1 auto;
}

.footer {
  order: 3;
}

.aside-1, .aside-2, .main-content {
  font-size: 70px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-body {
  display: flex;
}
@media (max-width: 1024px) {
  .main-body {
    flex-flow: column nowrap;
  }
}

.aside-1, .aside-2 {
  flex: 0 0 300px;
  background-image: linear-gradient(lightskyblue, white);
}

.main-content {
  flex: 1 1 auto;
  order: 2;
  background-image: radial-gradient(red, white);
}
@media (max-width: 1024px) {
  .main-content {
    order: -1;
  }
}

.aside-1 {
  order: 1;
}

.aside-2 {
  order: 3;
}

.download a {
  font-size: 20px;
  color: blue;
}

.download {
  width: 200px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin-right: 5%;
  margin-bottom: 7.5%;
}

/*# sourceMappingURL=style.css.map */
