.ie-panel {
    display: none;
    background: #212121;
    padding: 10px 0;
    box-shadow: 3px 3px 5px 0 rgba(0, 0, 0, .3);
    clear: both;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  html.ie-10 .ie-panel,
  html.lt-ie-10 .ie-panel {
    display: block;
  }

  @import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

  #captchaBackground {
    display: flex;
    align-items: center;
  }

  #captchaHeading {
    color: white;
  }

  #captcha {
    height: 80%;
    width: 80%;
    font-size: 30px;
    letter-spacing: 3px;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }

  .center {
    flex-direction: column;
    align-items: center;
  }

  #submitButton {
    margin-top: 2em;
    margin-bottom: 2em;
    background-color: #f14d4d;
    border: 0px;
    font-weight: bold;
  }

  #submitButton:hover,
  #refreshButton:hover {
    background: #31383a;
    border-color: #31383a;
    color: #f14d4d;
  }

  #refreshButton {
    background-color: #f14d4d;
    border: 0px;
    font-weight: bold;
  }

  .incorrectCaptcha {
    color: #FF0000;
  }

  .correctCaptcha {
    color: #7FFF00;
  }

  h1 {
    font-size: 0.4rem;
    line-height: 1;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  @media screen and (max-width: 768px) {
    #captchaBackground {
      display: block;
    }
  }