 #banner {
    background-image: linear-gradient(120deg, #91C4FF 0%, #F0F7FF 87%);
    position: relative;
    width: 100%;
    height: 950px;
  }
  
  #cloud-scroll {
    background: url(/background.jpg) repeat-x;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    position: absolute;
    -webkit-animation: 900000s backgroundScroll infinite linear;
    -moz-animation: 900000s backgroundScroll infinite linear;
    -o-animation: 900000s backgroundScroll infinite linear;
    -ms-animation: 900000s backgroundScroll infinite linear;
    animation: 900000s backgroundScroll infinite linear;
  }
  
  @-webkit-keyframes backgroundScroll {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -99999999px 0;
    }
  }
  
  @keyframes backgroundScroll {
    from {
      background-position: 0 0;
    }
    to {
      background-position: -99999999px 0;
    }
  }

  #cont1 {

    height: 100%;
   overflow-y: auto;

}

span {
    white-space:pre-wrap;

}

.alert-gradient{
        background: linear-gradient(to top right, #e66465, #9198e5);
        border-radius:0px;
        border:none;
        color:#fff;
    }
    .alert-heading-gradient{
        color:#fff;
        font-weight:900;
    }