/*
 * Globals
 */

/* :oldroot{
  --maincolor: rgba(0, 255, 234, .7);
  --maincolor-half: rgba(0, 255, 234, .6);
  --maincolor-quarter: rgba(0, 255, 234, .25);
  --maincolor-bg: #333;
  --maincolor-element-bg: #212529;
  --maincolor: rgba(202, 191, 160, 1);
} */


:root{
  --maincolor: rgba(0, 128, 0, 1);
  --maincolor-half: rgba(0, 100, 0, 1);
  --maincolor-quarter: rgba(0, 255, 234, .25);
  --secondary-color: rgb(211, 206, 192, 0.8);
  --maincolor-bg: #11111180;
  --maincolor-bg-block: #151515c5;
}

.card{
  --bs-card-bg: var(--maincolor-bg-block);
  --bs-body-color: var(--secondary-color);
  --bs-card-color: var(--maincolor);
  /* margin-bottom: 3rem; */
}

.card-body{
  min-width: 10rem;
}

.card-text-small{
  font-size: 0.8rem;
}
.card-text-large{
  font-size: 1.5rem;
}

.card-svg{
  fill: var(--maincolor);
  stroke: var(--maincolor-half);
  width: 100px;
}

.form-control{
  --bs-body-bg: var(--maincolor-bg-block);
  --bs-primary-border-subtle: var(--secondary-color);
}

.accordion{
  --bs-accordion-bg: var(--maincolor-bg-block);
}

/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}

/* Custom default button */
.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: var(--maincolor);
  border: .05rem solid var(--maincolor);
}

.btn,
.btn:hover,
.btn:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from `body` */
  background-color: var(--maincolor);
  border: .05rem solid var(--maincolor);
}

/*
 * Base structure
 */

html {
  min-height: 100%;/* needed to make background box shadow resize properly in combination with min-height of html*/
  display: flex;/* needed to make background box shadow resize properly in combination with min-height of html*/
  
}

html,
body {
  background-color: var(--maincolor-bg);
  background-image: url('/img/drumset giant spider.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body {
  flex: 1;/* needed to make background box shadow resize properly in combination with min-height of html*/
  display: -ms-flexbox;
  display: -webkit-box;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: var(--maincolor);
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
}

img{
  border-radius: 1.5%;
}

.cover-container {
  max-width: 50em;
}



/*
 * Header
 */
.masthead {
  margin-bottom: 0.5rem;
}

.masthead-brand {
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: 0 0;
  /* padding: .25rem 0; top right */
  font-weight: 100;
  color: var(--maincolor-half);
  background-color: transparent;
  /* border-bottom: .25rem solid transparent; */
}

/* .nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  /* border-bottom-color: var(--maincolor-quarter); */
/*} */

.nav-masthead .nav-link + .nav-link {
  margin-left: 1rem;
}

.nav-masthead .active {
  color: #fff;
  border-bottom-color: #fff;
}

@media (min-width: 48em) {
  .masthead-brand {
    float: left;
  }
  .nav-masthead {
    float: right;
  }
}


/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: .75rem 1.25rem;
  font-weight: 700;
}


/*
 * Footer
 */
.mastfoot {
  color: var(--maincolor-half);;
}

.accordion-button{
  color:var(--maincolor-half);
}
.accordion-button:not(.collapsed){
  color: var(--maincolor-half);
  background-color: transparent;
}

.accordion-item{
  color: var(--maincolor);
}

div.captcha{
  --altcha-color-border:var(--maincolor);
  --altcha-color-text: var(--maincolor);
  --altcha-color-base: var(--maincolor-bg-block);

  /* --altcha-border-width:3px;
  --altcha-border-radius:15px; */
}
a {
  color: var(--maincolor);
}