.opt-out-container-outer {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.opt-out-container-inner {
  padding: 60px;
  border: 1px solid #ccc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center
  max-width: 600px;
}

.opt-out-blurb {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.opt-out-content h1 {
  font-size: 2em;
  line-height: 1em;
  color: #373737;
  margin: 0 0 0.7em;
  font-weight: 800;
}

.opt-out-content p {
  font-size: 1.286em;
  line-height: 1.4em;
  color: #373737;
  margin: 0 0 0.5em;
  font-weight: 400;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .opt-out-container-inner {
    padding: 40px;
  }
}

