/*
 * Globals
 */

.bd-placeholder-img {
    font-size: 1.125rem;
    text-anchor: middle;
}

@media (min-width: 768px) {
    .bd-placeholder-img-lg {
      font-size: 3.5rem;
    }
}

/* 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: #fff;
  border: .05rem solid #fff;
}

/*
 * Base structure
 */

html,
body {
    min-height: 100vh;
    height: auto;
    background-color: #333;
}

body {
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  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: 48em;
    /* height: 100vh; */
}

/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead-brand {
  color: #ffa500;
  margin-bottom: 0;
}

.nav-masthead .nav-link {
  padding: .25rem 0;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  background-color: transparent;
  border-bottom: .25rem solid transparent;
}

.nav-masthead .nav-link:hover,
.nav-masthead .nav-link:focus {
  border-bottom-color: rgba(255, 255, 255, .25);
}

.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;
}

@media (max-width: 320px) {
  .lead {
    font-size: 1rem;
  }

  .cover-heading {
    font-size: 2rem;
  }
}

.game-in-progress {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-top-color: lightgray;
    border-top-style: solid;
    border-top-width: thin;
    border-bottom-color: lightgray;
    border-bottom-style: solid;
    border-bottom-width: thin;
    visibility: hidden;
    display: none;
}

.show-game-in-progress {
    opacity: 1;
    display: block;
    visibility: visible;
    transform: scale(1.0);
    transition: visibility 0s linear 0s, opacity 0.25s 0s, transform 0.25s;
}

.btn-continue-game {
    background-color: coral;
}

.divPlayerName {
    padding-top: 1.25rem;
    margin: 0 auto;
}

.labelPlayer {
    padding: 0 10px;
    text-align: end;
}

.btn-removePlayer {
  font-size: x-large;
  color: white;
  background-color: transparent;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  width: 5rem;
  padding: 0;
  border-style: solid;
  border-width: medium;
  border-radius: 10px;
  border-color: coral;
}

.btn-removePlayer:hover {
  background-color: coral;
}

.btn-removePlayer:focus {
  box-shadow: 0 0 10px rgba(255, 127, 80, 1);
  -webkit-box-shadow: 0 0 10px rgba(255, 127, 80, 1); 
  -moz-box-shadow: 0 0 10px rgba(255, 127, 80, 1); 
}

.btn-addPlayer {
  font-size: x-large;
  color: white;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: .5rem;
  margin-right: .5rem;
  width: 5rem;
  padding: 0;
  border-style: solid;
  border-width: medium;
  border-radius: 10px;
  border-color: darkseagreen;
}

.btn-addPlayer:hover {
  background-color: darkseagreen;
}

.btn-addPlayer:focus {
  box-shadow: 0 0 10px rgba(143, 188, 143, 1);
  -webkit-box-shadow: 0 0 10px rgba(143, 188, 143, 1); 
  -moz-box-shadow: 0 0 10px rgba(143, 188, 143, 1); 
}

.textboxPlayerNameStart {
    margin-left: 10px;
    border-style: none;
    padding: .1rem .3rem;
    border-radius: 5px;
    max-width: 8.5rem;
}

@media (max-width: 320px) {
  .textboxPlayerNameStart {
    margin-left: 4px;
    max-width: 6.5rem;
  }
}

#inputStartPoints {
    width: 80px;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    text-align: center;
}

.datenschutz-link {
  color: gray;
}

/*
 * Footer
 */
.mastfoot {
  color: rgba(255, 255, 255, .5);
}

