* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

body {
  background-color: #F5F8DE;
  color: #0A100D;
  font-size: 16px;
}

/* TYPOGRAPHY */

p.small {
  font-size: 1.0em;
}

/* COLORS */

.bg-blue {
  background-color: #778da5 !important;
  color: #fff !important;
}

.bg-red {
  background-color: #d54130 !important;
  color: #fff !important;
}

.bg-red-gradient {
  background: rgb(173,32,32);
  background: linear-gradient(270deg, rgba(173,32,32,1) 0%, rgba(216,67,49,1) 100%);
  color: #fff;
}

/* HYPERLINKS */

a.plain, a:hover.plain {
  color: inherit;
  text-decoration: none;
}

a.underlined {
  text-decoration: underline !important;
}

/* FRONT PAGE */

div.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

div.logo img {
  max-width: 600px;
}

@media screen and (max-width: 476px) {
  div.logo img {
    max-width: 100%;
  }
}

div.boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

div.boxes span.box {
  display: inline-block;
  width: auto;
  background-color: #fff;
  padding: 20px 5px;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
  font-family: 'League Spartan', sans-serif;
  width: auto;
  letter-spacing: 2px;
  line-height: 0.9em;
}

div.boxes span.box:nth-child(even) {
  margin-left: 30px;
}

div.boxes span.box:nth-child(odd) {
  margin-right: 30px;
}

/* FRONT PAGE SECTIONS */

section {
  font-family: 'League Spartan', sans-serif;
}

section h1 {
  font-weight: 600 !important;
}

section h2 {
  font-weight: 500;
}

section p {
  font-weight: 400;
  font-size: 1.3em;
}

/* BUTTONS */

a.button, button.button, input[type=submit] {
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-right: 10px;
  margin-bottom: 15px;
  border: 0px;
}

button.button {
  display: block;
  width: auto;
}

button:disabled {
  opacity: 0.35;
}

@media screen and (max-width: 476px) {
  button.submit {
    width: 100%;
  }
  a.button {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    margin-right: 0px;
  }
}

/* OUR SHOWS */

img.show-card {
  max-width: 400px;
}
