html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background-color: #E3E4DA;
  font-family: 'Lato', sans-serif;
  margin-bottom: 50px;
}

header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 100px;
  background-color: #3B3A3A;
  text-align: center;
}

header h1 {
  margin: 0 auto;
  padding: 0; 
  font-size: 48px;
  color: #FFB463;
  padding-top: 20px;
  width: 1200px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 1px;
}

/* mobile-only */
@media (max-width: 600px) {
  header {
    height: 80px;
  }
  header h1 {
    font-size: 2em;
    margin-left: 20px;
  }
}

content {
  margin: 0 auto;
  padding: 0;
  width: 1200px;
  display: initial;
  height: 100%;
}

@media (min-width: 900px) {
  content .intro {
    margin: 0 auto;
    width: 1200px;
    text-align: center;
    margin-top: 65px;
  }
  content h3 {
    width: 550px;
    margin-left: 0;
    margin-right: auto;
    border: 4px solid #FFB463;
    padding: 30px;
  }
  content h3 a {
    text-decoration-color: #FFB463;
    color: inherit;
    font-weight: 900;
  }
}

@media (max-width: 600px) {
  content .intro {
    text-align: center;
  }
  content h3 {
    width: 300px!important;
    margin-left: 20px;
  }
  content h3 a {
    text-decoration-color: #FFB463;
    color: inherit;
    font-weight: 900;
  }
}

@media (max-width: 900px) {
  content .intro {
    margin-top: 65px;
  }
  content h3 {
    margin-top: 0;
    text-align: left;
    width: 550px;
    border: 4px solid #FFB463;
    padding: 30px;
    padding-bottom: 0;
  }
  content h3 a {
    text-decoration-color: #FFB463;
    color: inherit;
    font-weight: 900;
  }
}

content .intro {
  padding: 0;
  display: block;
}

content h3 {
  margin: 0 auto;
  font-size: 20px;
  text-align: left;
  line-height: 30px;
  color: #575757;
  font-weight: 700;
  display: inline-block;
}

content .flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: flex-start;
  margin: auto;
  margin-top: 40px;
  align-content: flex-start;
  max-width: 1300px;
}

content .flex-items {
  width: 290px;
  height: 340px;
  background-color: #232323;
  margin: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 65px;
  box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.43);
  -webkit-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.43);
  -moz-box-shadow: 2px 1px 5px 0px rgba(0,0,0,0.43);
}

.flex-items button {
  margin: 0 auto;
  padding: 0;
  border-radius: none;
  width: 143px;
  height: 50px;
  font-weight: 400;
  background-color: #2f2f2f;
  color: #fff;
  border: none;
  letter-spacing: 0.5px;
  font-size: 14px;
  text-shadow: 2px 0px 6px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}

button:not(:focus):hover {
  background-color: rgb(74, 65, 65);
  color: #FFB463;
}

button:active {
  background-color: #404040;
  outline: none;
  color: #FFB463;
}

button.selected {
  color: #2f2a2a;
  background-color: #FFB463;
  outline: none;
  font-weight: 700;
  text-shadow: none;
}

input[type="button"]{
  outline:none;
}
input[type="button"]::-moz-focus-inner {
  border: 0;
}

@media only screen and (max-device: 480px){
  a:hover {
    color: #fff;
    background-color: #2f2f2f;
  }
  button:visited {
    background-color: rgb(74, 65, 65);
    color: #FFB463;
  }
  button.selected {
    color: #2f2a2a;
    background-color: #FFB463;
    outline: none;
    font-weight: 700;
    text-shadow: none;
  }
}

/* audio-card styling */

body #container {
  height: 290px;
  width: 290px;
  position: relative;
  margin: 0 auto;
}
body #container:hover #cover a.play #play,
body #container:hover #cover a.pause #pause {
  opacity: .9;
}
body #container:hover .shadow {
  width: 290px;
}
body #container.open .shadow {
  width: 290px;
}
body #cover {
  height: 290px;
  width: 290px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(20, 20, 22, 0.5) ), url(media/images/rogan-head.png) center center;
  background-size: cover;
  z-index: 2;
}

body #cover:hover {
  height: 290px;
  width: 290px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient( rgba(226, 33, 33, 0.5), rgba(72, 43, 187, 0.5) ), url(media/images/rogan-head.png) center center;
  background-size: cover;
  z-index: 2;
  border-radius: 2px;

  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

body #cover a {
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body #cover a #play,
body #cover a #play:after,
body #cover a #play:before {
  width: 60px;
  height: 60px;
  position: absolute;
  background: white;
  border-top-right-radius: 30%;
  margin: 35px 0 0 120px;
  -webkit-transition: margin .2s;
  transition: margin .2s;
}
body #cover a #play {
  opacity: .6;
  -webkit-transition: opacity .2s, top .2s;
  transition: opacity .2s, top .2s;
  top: -130px;
  border: 0;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 74px;
  border-color: transparent transparent transparent #fff;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 37px 0 37px 60px;
}

body #cover a #pause,
body #cover a #pause:after {
  height: 54px;
  width: 12px;
  background: white;
  border-radius: 5px;
  position: absolute;
  top: 316px;
  left: 120px;
  opacity: .6;
  -webkit-transition: top .2s, opacity .2s;
  transition: top .2s, opacity .2s;
}
body #cover a #pause:after {
  content: '';
  top: 0;
  left: 26px;
  opacity: 1;
}
body #cover a.play #play {
  top: 72px;
}
body #cover a.pause #pause {
  top: 106px;
}

.validate-answer {
  margin-top: 10px;
  font-weight: 700;
}

.answer-icon {
  width: 15px;
  margin-right: 5px;
}