body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto-*', sans-serif;
}
.container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 5px 25px;
  box-sizing: border-box;
  box-shadow: 4px 4px 6px 2px rgb(0, 0, 0);
  margin-top: 50px;
}
.container-2 {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.title h2 {
  text-align: center;
  margin: 30px 0;
  font-size: 2.7rem;
}

.image {
  margin: 0 40px;
  border-radius: 15px;
  box-shadow: 2px 2px 4px 1px rgb(0, 0, 0);
  cursor: pointer;
}

.image img {
  display: block;
  margin: 0 auto;
  border-radius: 15px;
  width: 100%;
}

.content {
  font-size: 20px;
  font-weight: 400;
  padding: 10px 40px;
}

.blue {
  color: #287cd6;
}

a {
  text-decoration: none;
}

.watch-now {
  text-align: center;
  font-size: 24px;
  cursor: pointer;
}

.footer {
  width: 100%;
  background-color: #e6e6e6;
  color: black;
  margin-top: 100px;
  margin-bottom: 50px;
  min-height: 200px;
  padding: 30px 0;
  text-align: center;
}

b {
  font-weight: bolder;
  color: #287cd6;
}

.button-section {
  text-align: center;
  margin-top: 20px;
}

.watch {
  padding: 15px 60px;
  background-color: #ffc800;
  color: black;
  border: none;
  border-radius: 15px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 2px 2px 4px 1px rgb(0, 0, 0);
}

/* on mobile make things full width and adjust text size accordingly */
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    padding: 5px;
    margin-top: 10px;
    box-shadow: none;
    max-width: auto;
  }

  .title h2 {
    font-size: 2rem;
    margin: 10px 0 20px;
  }

  .image {
    margin: 0 auto;
  }

  .content {
    font-size: 18px;
    padding: 10px;
  }

  .watch-now {
    font-size: 20px;
  }

  .footer {
    margin-top: 50px;
    margin-bottom: 50px;
    min-height: 200px;
    padding: 30px 0;
  }

  .button-section {
    margin-top: 20px;
  }

  .watch {
    padding: 15px 30px;
    font-size: 20px;
  }
}