html {
  color: #2e2e2e;
  font-family: Verdana, sans-serif;
  font-size: 16px;
  background: #2e2e2e;
  background: url(../img/3GnUFl2.jpg) no-repeat center center fixed;
  background-size: cover;
}

  @media screen and (max-width: 666px) {
    /* reposition background image for smaller screens */
    html {
      background-position: bottom;
    }
  }

body {
  margin: 0 auto;
}

::selection {
  background: black;
  opacity: 1;
}

  ::-moz-selection {
    background: rgba(0,0,0,1);
  }

a {
  border-bottom: 1px solid whitesmoke;
  color: whitesmoke;
  text-decoration: none;
}

  a:hover {
    background: whitesmoke;
    color: black;
  }

.squanch-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  padding: 1rem 0 2rem;
  background-color: #2e2e2e;
  background-color: black;
  color: whitesmoke;
  font-weight: 400;
  text-align: center;
  box-shadow: 0 -4px 8px rgba(0,0,0,.5);
}

  .title {
    margin: 0 0 .5rem;
    color: whitesmoke;
    font-size: 1rem;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 2px
  }

  .squanch-panel__controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

    .squanch {
      display: block;
      order: 2;
      width: 22.5rem;
      padding: .5rem 1rem;
      background: whitesmoke;
      color: #2e2e2e;
      border: 0;
      border-radius: 4px;
      font-size: 2rem;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

      .squanch:hover {
        background: lightgrey;
      }

      .squanch:focus {
        outline: 0;
      }

      .squanch:after {
        content: attr(title);
        position: absolute;
        left: 0;
        right: 0;
        bottom: .8rem;
        color: whitesmoke;
        font-size: .8rem;
        font-weight: normal;
        text-transform: none;
      }

    .button {
      height: 1.4rem;
      margin: 0 auto;
      padding: .5rem 1rem;
      color: whitesmoke;
      border: 1px solid whitesmoke;
      border-radius: 4px;
      font-size: 1rem;
      text-transform: uppercase;
      text-decoration: none;
      letter-spacing: 2px;
    }

      .button:hover,
      .button:active {
        background: whitesmoke;
        color: #2e2e2e;
        font-weight: bold;
        letter-spacing: 1px;
      }

      .button:focus,
      .squanch:focus {
        outline: 0;
        box-shadow: 0 0 8px whitesmoke;
      }

      .tweet {
        order: 1;
      }

      .about {
        order: 3;
      }

  @media screen and (max-width: 666px) {
    /* reorder and resize buttons for mobile */
    .squanch-panel {
      padding-bottom: 1rem;
    }

      .squanch-panel__controls {
        justify-content: space-between;
        width: 22.25rem;
        margin:0 auto;
      }

        .squanch {
          order: 1;
          width: 100%;
          margin-bottom: .5rem;
        }

        .tweet {
          order: 2;
        }

        .about {
          order: 3;
        }

        .tweet,
        .about {
          width: 8.75rem;
          margin: 0;
        }

    /* hide controls description for mobile */
    .squanch:after {
      display: none;
    }
  }

  @media screen and (max-width: 360px) {
    .squanch-panel {
      padding: .5rem 0;
    }

      .title {
        font-size: .8rem;
      }

      .squanch-panel__controls {
        width: 18.5rem;
      }

        .tweet,
        .about {
          width: 6.75rem;
        }
  }



.quote {
  width: 96vw;
  position: relative;
  top: 2vw;
  left: 2vw;
  margin: 0 0 20rem;
  padding: 0;
  color: whitesmoke;
  font-size: 2.5rem;
  font-weight: 400;
  text-shadow: 1px 2px 0 black,
               -2px -1px 0 black,
               1px -1px 0 black,
               -2px 2px 0 black;
}

  .quote__text {
    width: 70%;
    margin: 0;
    padding: 0;
    line-height: 1.4;
  }

  .quote__citation {
    position: absolute;
    right: 0;
    bottom: -16vw;
    line-height: .8;
    text-align: right;
  }

  .quote__attribution {
    font-weight: bold;
    font-style: normal;
  }

    .episode {
      font-size: 1.2rem;
      line-height: 1;
      font-style: normal;
    }

    .episode__num {

    }

    .episode__title {
      position: relative;
      top: -.5rem;
      font-style: italic;
    }

  @media screen and (max-width: 666px) {
    .quote__text {
      width: 100%;
      font-size: 1.5rem;
    }

    .quote__citation {
      top: 110%;
    }

      .quote__attribution {
        font-size: 2rem;
      }
  }



.modal {
  display: none;
  position: fixed;
  top: 40%;
  left: 0;
  right: 0;
  width: 95%;
  max-width: 34rem;
  margin: 0 auto;
  padding: .5rem 1rem .5rem;
  background: black;
  border-radius: 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,.5);
  color: whitesmoke;
  opacity: 0;
}

  .modal__title {
    display: block;
    width: 8rem;
    margin: 0 auto .5rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid whitesmoke;
    color: whitesmoke;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px
  }

  .modal__text {
    font-size: 1rem;
    line-height: 1.5;
    letter-spacing: 1px;
  }

  .modal__close {
    display: block;
    width: 8rem;
    margin: 0 auto;
    padding: .5rem;
    background: transparent;
    border: 1px solid whitesmoke;
    border-radius: 4px;
    color: whitesmoke;
    font-size: 1rem;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
  }

    .modal__close--large {
      position: relative;
      bottom: -1px;
      font-size: 1.35rem;
    }

    .modal__close:hover,
    .modal__close:active {
      background: whitesmoke;
      color: #2e2e2e;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .modal__close:focus {
      outline: 0;
    }

  @media screen and (max-width: 360px) {
    .modal {
      width: 87%;
      max-height: 18rem;
      overflow-y: scroll;
    }
  }



.text--center {
  text-align: center;
}

.text--justify {
  text-align: justify;
}










