/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

body {
    /* padding-top: 3rem; */
    padding-bottom: 3rem;
    color: #5a5a5a;
  }
  
.blank {
    margin-right: 0.4em;
}
  
.blank-text {
    font-size: xxx-large;
    user-select: none;
    display: flex;
    font-weight: lighter;
}

.blank-text-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.active-blank{
    color: orange;
    font-weight: bolder;
}

.quiz-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 30px;
    max-width: 600px;
    width: 100%;
    margin: auto;
    margin-top: 2em;
}

.quiz-header {
    text-align: center;
    margin-bottom: 30px;
    background-color: rgb(233, 236, 239);
    border-radius: 5em;
}

#answer {
    margin-bottom: 0.5em;
}

.error-span{
    color: red;
}

.error-hidden{
    display: none;
}

.error-input {
    border-color: red;
    border-width: medium;
}

#innerQuizHeader{
    padding-top: 0.2em;
    padding-bottom: 0.2em;
}

.success-hidden {
    display: none;
}

.custom-hidden {
    display: none;
}

#quizSuccess {
    margin-bottom: 0.5em;
}

.carousel-image {
    margin: auto;
    max-width: 100%;
    height: auto;
    max-height: 32rem;
}

.carousel-inner {
  background-color: lightgray;
}

.myHeader {
  text-align: center;
}

  /* CUSTOMIZE THE CAROUSEL
  -------------------------------------------------- */
  
  /* Carousel base class */
  .carousel {
    margin-bottom: 4rem;
  }
  /* Since positioning the image, we need to help out the caption */
  .carousel-caption {
    bottom: 3rem;
    z-index: 10;
  }
  
  /* Declare heights because of positioning of img element */
  
  
  .carousel-item {
    max-height: 32rem;
    height: auto;
  } 
   /*
  .carousel-item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 32rem;
  }*/
  
  
  /* MARKETING CONTENT
  -------------------------------------------------- */
  
  /* Center align the text within the three columns below the carousel */
  .marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .marketing h2 {
    font-weight: 400;
  }
  /* rtl:begin:ignore */
  .marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
  }
  /* rtl:end:ignore */
  
  
  /* Featurettes
  ------------------------- */
  
  .featurette-divider {
    margin: 5rem 0; /* Space out the Bootstrap <hr> more */
  }
  
  /* Thin out the marketing headings */
  .featurette-heading {
    font-weight: 300;
    line-height: 1;
    /* rtl:remove */
    letter-spacing: -.05rem;
  }
  
  
  /* RESPONSIVE CSS
  -------------------------------------------------- */
  
  @media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
      margin-bottom: 1.25rem;
      font-size: 1.25rem;
      line-height: 1.4;
    }
  
    .featurette-heading {
      font-size: 50px;
    }
  }
  
  @media (min-width: 62em) {
    .featurette-heading {
      margin-top: 7rem;
    }
  }
  