iframe {
  display: block;
  margin-bottom: 14px;
}

.subscribe-button {
  width: 110px;
  padding-bottom: 10px;
  padding-top: 10px;
  border: none;
  border-radius: 50px;
  background-color: black;
  color: white;
  transition: 0.9s;
  cursor: pointer;
}

.subscribe-button:hover {
  opacity: 0.7;
}

.subscribe-button:active {
  opacity: 0.5;
}

.join-button {
  background-color: white;
  border-color: rgb(41, 118, 211);
  border-style: solid;
  border-width: 1px;
  color: rgb(41, 118, 211);
  height: 36px;
  width: 62px;
  border-radius: 18px;
  cursor: pointer;
  margin-right: 8px;
  transition: background-color 0.9s, color 0.9s;
  margin-left: 5px;
}

.join-button:hover {
  background-color: rgb(30, 88, 197);
  color: white;
}

.join-button:active {
  opacity: 0.8;
}