/*
Theme Name: NICK D. STURB
Author: TICKTOO Systems GmbH (Pedro Stoehr)
Author URI: https://ticktoo.com
Version: 1.0
*/

/*! IMPORTS ------------------------------------------------------------ */

@import url('vendor/bootstrap-5.3.8-dist/css/bootstrap-reboot.min.css');
@import url('vendor/bootstrap-5.3.8-dist/css/bootstrap-grid.min.css');

/*! GENERAL ----------------------------------------------------------------- */

body{
  background: #1e0707 url(img/backdrop.webp) no-repeat center center;
  background-size: cover;
}
.min-vh-100{min-height:100vh!important}
.site-content{position:relative;z-index:9001}
.fader{animation:fader 2s ease-in-out 0s 1 normal forwards;}
@keyframes fader {
  0%{opacity:0}
  40%{opacity:1}
  100%{opacity:.5}
}
@keyframes fadeonce {
  0%{opacity:0}
  100%{opacity:1}
}
.fadeonce{animation:fadeonce 2s ease-in-out 0s 1 normal forwards;}


/*! BOOTSTRAP PARTS modified ------------------------------------------------ */

.container{padding:0 3rem}
.img-fluid{height:auto;max-width:100%;width:100%}
@media (min-width: 1200px){.container{max-width:1048px}}

/*! RESPONSIVE, BABY! ------------------------------------------------------- */

@media screen and (min-width: 1200px){ /* EXTRA LARGE */}
@media screen and (min-width: 992px){ /* LARGE */ }
@media screen and (max-width: 991.98px){ /* SMALL + MEDIUM */ }
@media screen and (min-width: 576px) and (max-width: 991.98px){ /* MEDIUM ONLY */ }
@media screen and (max-width: 575.98px){ /* SMALL ONLY*/ }

/*! END OF LINE */