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

.containerWide {
    display: flex;
    width: 100%;
    margin: 0px 0px 10px 0px;
  }

.row {
    display: flex;
}

a {
    text-decoration: none;
}

.question {
    color: rgb(23, 105, 177);
    font-size: 1.4em;
    font-weight: bold;
    margin: 0px 20px;
}

.answer {
    margin: 5px 30px 15px 30px;
    line-height: 160%;
    font-size: 1.2em;
}

.question:hover {
    color: rgb(176, 0, 0);
    cursor: pointer;
}

.blue {
    color: rgb(23, 105, 177);
    font-weight: bold;
}

.blue:hover {
    color: rgb(177, 23, 23);
}
  
.pageTitle {
    font-family: 'Pacifico', cursive;
    color: rgb(19, 41, 65);
    font-size: 2.8em;
    font-weight: 200;
    margin: 0px 0px 20px 0px;
    text-align: center;
}

.pageContent {
      width: 1050px;
      margin: 0px auto;
      background-color: white;
      margin-top: 10px;
      padding: 60px;
      display: block;
      text-align: left;
}

.videoContainer {
    position: relative;
    display: block;
    width: 100%;
    height: 450px;
    overflow: hidden;
    z-index: -1;
}

#homeVideo {
    position: absolute;
    right: 0;
    top: -35px;
    min-width: 100%;
    min-height: 100%;
}
  
.pageText {
    padding: 0px 5px 15px;
    line-height: 160%;
    font-size: 1.2em;
    text-align: left;
}

@media only screen and (max-width: 890px) {

.containerWide {
    margin-bottom: 20px;
}

.pageContent {
    padding: 20px;
}

.pageTitle {
    line-height: 120%;
}
    }