body {
    background-color: #9b0923;
}


#badge-wrapper {
    width: 100%;
  display: flex;
  justify-content: center;
    text-align: center;
    align-items: center;
}

.badge {
    width: 16rem;
}

#appstore {
    width: 12rem;
}



h1 {
    color: #ECF0F1;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

h3 {
    color: #ECF0F1;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}


#body-wrapper {
    min-height: 100%;
    position: relative;
}

#body-content {
    margin-top: 0px;
    
}

footer {
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
  } 

/* footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: red;
    color: white;
    text-align: center;
  } */

.slider-wrapper {
    margin: 1rem;
    position: relative;
    overflow: hidden;
  }
  .slides-container {
    height: calc(100vh - 2rem);
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: scroll;
    scroll-behavior: smooth;
  }
  .slide {
    width: 100%;
    flex: 1 0 100%;
    background-position: center;
    background-size: contain;background-repeat: no-repeat;
  }
  .slide:nth-child(1) {
    background-image: url("assets/67-1.png");
  }
  
  .slide:nth-child(2) {
    background-image: url("assets/67-2.png");
  }
  
  .slide:nth-child(3) {
    background-image: url("assets/67-3.png");
  }
  
  .slide:nth-child(4) {
    background-image: url("assets/67-4.png");
  }
  
  
  .slides-container {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
/* WebKit */
.slides-container::-webkit-scrollbar { 
    width: 0;
    height: 0;
}

.slide-arrow {
    position: absolute;
    display: flex;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 4rem;
    background-color: white;
    border: none;
    width: 2rem;
    font-size: 3rem;
    padding: 0;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 100ms;
  }
  .slide-arrow:hover,
  .slide-arrow:focus {
    opacity: 1;
  }
  #slide-arrow-prev {
    left: 0;
    padding-left: 0.25rem;
    border-radius: 0 2rem 2rem 0;
  }
  #slide-arrow-next {
    right: 0;
    padding-left: 0.75rem;
    border-radius: 2rem 0 0 2rem;
  }
