.gradient {
  background: linear-gradient(to right, blue, pink);
  color: #ffffff;
  font-size: 2rem;
  display: block;
  text-align: center;
}

.today {
  max-width: 85%;
  margin: 50px auto 150px;
}

.today .wrapper {
  display: flex;
  margin: 100px 0 100px;
}

.today .wrapper .img {
  width: 70%;
  text-align: center;
}

.today .wrapper .img img {
  width: 200px;
  height: 150px;
}

.today .wrapper .text {
  width: 80%;
}

@media (max-width: 599px) {
  .gradient {
    background: linear-gradient(to right, blue, pink);
    color: #ffffff;
    font-size: 2rem;
    display: block;
    text-align: center;
    width: 90%;
    margin: 0 auto;
  }
  .today {
    max-width: 100%;
    margin: 20px auto 150px;
  }
  .today .wrapper {
    display: block;
    margin: 50px 0 100px;
  }
  .today .wrapper .img {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
  .today .wrapper .img img {
    width: 200px;
    height: 150px;
  }
  .today .wrapper .text {
    width: 95%;
    text-align: center;
  }
  .today .wrapper .text h3 {
    text-align: center;
    margin-bottom: 20px;
  }
  .today .wrapper .text p {
    margin-left: 15px;
  }
} /*# sourceMappingURL=today.css.map */