.spongebob {
  position: relative;
  overflow: hidden;
}

.spongebob__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.spongebob__title {
  font-size: 51px;
  font-weight: 700;
  line-height: 1.35;
  text-transform: uppercase;
  position: relative;
  padding: 20px 0;
}

.spongebob__title::before,
.spongebob__title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  position: absolute;
  left: 0;
  background-color: var(--pen);
}

.spongebob__title::before {
  top: 0;
}

.spongebob__title::after {
  bottom: 0;
}

.spongebob__pre {
  font: var(--tall);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.spongebob__body {
  font: var(--tall);
  font-weight: 700;
  margin-top: 55px;
}

.spongebob__content {
  padding: var(--offset-y) var(--offset-x);
  position: relative;
  z-index: 1;
}

.spongebob__suff {
  font: var(--tall);
  font-weight: 700;
  margin-top: 30px;
}

.spongebob__graphic {
  position: absolute;
  right: -30px;
  top: -300px;
}

@media (max-width: 650px) {
  .spongebob__title {
    font-size: 30px;
  }

  .spongebob__pre,
  .spongebob__suff {
    font: var(--short);
    font-weight: 700;
  }

  .spongebob__body {
    font: var(--short);
    font-weight: 700;
  }
}

@media (min-width: 651px) and (max-width: 1024px) {
  .spongebob__title {
    font-size: 38px;
  }

  .spongebob__graphic {
    max-width: 65%;
  }
}

@media (min-width: 1025px) and (max-width: 1439px) {
  .spongebob__title {
    font-size: 48px;
  }
}

@media (min-width: 768px) {
  .spongebob__content {
    max-width: 60%;
  }
}

@media (min-width: 1440px) {
  .spongebob__content {
    margin: 0 0 0 var(--gutter);
  }
}