body {
  color: #666;
  background-color: #eee;
  position: relative;
  font-family: "Open Sans", sans-serif;
}

body main {
  text-align: center;
}

body main .text {
  margin-top: 100px;
}

@media screen and (max-width: 1400px) {
  body main .text {
    margin-top: 20px;
  }
}

body main .text h1:first-child {
  margin-bottom: 30px;
  font-size: 4em;
}

body main .text h1 {
  line-height: 34px;
}

@media screen and (max-width: 600px) {
  body main .text h1 {
    font-size: 2em;
  }
}

body main .stations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}

body main .stations .item {
  margin: 0 40px;
}

body main .stations .item a img {
  transition: 0.3s;
}

body main .stations .item:hover a img {
  transform: scale(1.1);
}
