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

body {
    height: 100%;
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    display: flex;
    flex-direction: column;
    justify-content: center;
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.quiz {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  width: 470px;
  padding: 30px;
  color: white;
  font-size: 110%;
  margin: auto;
  background: rgba(255, 255, 255, 0.3);
}

.quiz h1 {
  font-family: Copperplate, "Copperplate Gothic Light", fantasy;
  text-align: center;
  pading:20px;
  color: #000;
  margin-bottom: 10px;
}

.option {
    width: 100%;
    height: 60px;
    background-color: #F4F7F7;
    cursor: pointer;
}

.option a span:nth-child(2) {
    display: inline-block;
}

.option a span:nth-child(2) p {
    margin: 15px 10px;
    font-family: Copperplate, "Copperplate Gothic Light", fantasy;
    font-size: 20px;
    color:#7A87A0
}

.option span {
    display: inline-block;
}

.letter {
  background-color: #7A87A0;
  color: white;
  display: block;
  float: left;
  margin-left: 15px;
  margin-top: 10px;
  margin-right: 0px;
  padding-top:17px;
  padding-left: 3px;
  text-align: center;
  text-transform: uppercase;
    width: 40px;
    height: 35px;
    border-radius: 4px;
}

.letter p {

    color: white;
    font-family: arial;
    font-size: 16pt;
    line-height: 0;
    font-weight: 600;
}

.borderme {
    border-top: solid 0.75pt #7A87A0;
}

.question {
  background-color: #7A87A0;
  border-radius: 3px;
  margin-bottom: 25px;
  font-size: 115%;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.question h3 {
    padding:15px;
    color: #fff;
}

@media screen and (max-width: 400px) {
    .question h3 {
        padding-top: 0px;
    }
}
