/* Général */
@font-face {
  font-family: 'Roboto';
  src: url('Roboto-Black.eot');
  src: url('Roboto-Black.eot?#iefix') format('embedded-opentype'),
       url('Roboto-Black.woff2') format('woff2'),
       url('Roboto-Black.woff') format('woff'),
       url('Roboto-Black.ttf') format('truetype'),
       url('Roboto-Black.svg#Roboto-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
body {
  height: 100vh;
  width: 100vw;
  max-height: 100vh;
  max-width: 100vw;
  overflow: hidden; 
  scroll-behavior: smooth;
  background-color: black;
  background-image: url('../img/music_sheets.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  font-family: 'Roboto', sans-serif;
}
@media only screen and (max-width: 576px){
  body {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
#banner_container {
  height: 11%;
}
#banner_container img {
  height: 100%;
  max-width: 100%;
}
#banner_container .split_banner {
  display: none;
}
@media only screen and (max-width: 576px) {
  #banner_container {
    height: 17%;
  }
  #banner_container img {
    height: 50%;
    max-width: 100%;
  }
  #banner_container .single_banner {
    display: none;
  }
  #banner_container .split_banner {
    display: block;
  }
}
#nav_xl a:hover {
  transform: scale(1.05);
}
#nav_xl .btn {
  line-height: 50px;
  font-size: x-large;
  font-weight: bold;
}
#nav_sm {
  display: none;
}
#menu_btn {
  background-color: #F86953;
}
@media only screen and (max-width: 576px){
  #nav_xl, #collapse_menu {
    display: none;
  }
  #nav_sm {
    display: block;
  }
  #collapse_menu a, #collapse_menu .btn-lg {
    border-radius: 0 !important;
  }
  #collapse_menu a {
    font-size: large;
  }
  #menu_btn {
    width: 50%;
    font-size: larger;
  }
}
body .card {
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100% !important;
  height: 75vh;
}
#page_title {
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media only screen and (max-width: 576px){
  #page_title {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media only screen and (max-width: 576px){
  body .card {
    height: 70vh;
  }
}
.text-justify {
  text-align: justify;
}
/* Custom Class */ 
.box_shadow {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.50);
}