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

body {
  background-color: #8FBC8F;
}

.wrapper {
  width: 1920px;
  max-width: 90%;
  min-height: calc(100vh - 40px);
  margin: 20px auto;
  display: flex;
  flex-flow: row nowrap;
}
.wrapper > div {
  font-size: 100px;
  font-weight: 600;
  text-transform: capitalize;
  writing-mode: vertical-rl;
  flex: 1 1 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wrapper > div:hover {
  animation: wide;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
.wrapper :nth-child(1) {
  background-color: #E4C44C;
}
.wrapper :nth-child(2) {
  background-color: #D92D69;
}
.wrapper :nth-child(3) {
  background-color: #47CBA8;
}
@media (max-width: 1023px) {
  .wrapper {
    flex-flow: column nowrap;
  }
  .wrapper > div {
    writing-mode: horizontal-tb;
  }
  .wrapper > div:hover {
    animation: narrow;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
  }
}

@keyframes wide {
  0% {
    background-color: rgba(0, 0, 0, 0.3);
  }
  100% {
    flex: 1 1 50%;
    font-size: 150px;
  }
}
@keyframes narrow {
  0% {
    background-color: rgba(0, 0, 0, 0.3);
  }
  100% {
    flex: 4 1 50%;
    font-size: 150px;
  }
}
.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 */
