/* Text Elements */

h1.cassette-title {
  text-align: center;
  font-weight: 700;
  font-size: 5vw;
}

/* Interaction Elements */

a.link-button.button {
  display: inline-block;
  margin-right: auto;
  margin-left: auto;
  background-color: #c40500;
}

a.link-button.button:hover {
  background-color: #ff3900;
  color: #000;
  font-weight: 400;
}

/* Layout Elements */

body.body-1 {
  background-color: #bae8ff;
}

.container.container-1 {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  margin-right: auto;
  margin-left: auto;
}

.container.container-2 {
  padding-right: 20px;
  padding-left: 20px;
}

li.list-item-link.listdd {
  padding-top: 5px;
  text-indent: 0;
}

.rule.therule hr {
  border-top-width: 3px;
  border-top-color: #c40500;
}

@media screen and (min-width: 40rem) {
  /* Text Elements */

  h1.title-cass {
    font-size: 32px;
  }

  li.list-item-link.listdd > a {
    font-size: 18px;
  }
}

@media screen and (min-width: 64rem) {
  /* Text Elements */

  h1.cassette-title {
    font-size: 48px;
  }

  h1.title-cass {
    font-weight: 600;
  }

  /* Layout Elements */

  .container.container-2 {
    display: -webkit-box;
    display: -webkit-flex;
    display:    -moz-box;
    display: -ms-flexbox;
    display:         flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: start;
    -ms-flex-align: center;

    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
       -moz-box-orient: vertical;
       -moz-box-direction: normal;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
       -moz-box-pack: start;
            justify-content: flex-start;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
            align-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
  }

  li.list-item-link.listdd > a {
    font-size: 20px;
  }
}