/*
 * Globals
 */

:root{
  --maincolor: rgba(0, 255, 234, .75);
  --maincolor-half: rgba(0, 255, 234, .5);
  --maincolor-quarter: rgba(0, 255, 234, .25);
  --secondary-color: rgb(211, 206, 192, 0.8);
  --maincolor-bg: #111111;
  --maincolor-bg-block: #151515;
}

/* Links */
a,
a:focus,
a:hover {
  color: var(--maincolor);
}

/* 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);
}

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);
}

.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-element-bg);

  /* --altcha-border-width:3px;
  --altcha-border-radius:15px; */
}

img{
  border-radius: 1.5%;
}

img.socialicon{
  height: 1.5rem;
}

span.slogan{
  font-size: 1rem;
}