body {
    background-image: url('/asset/graphics/bckgrnd_game');
    background-size: 160% auto;
    background-position: center;
    background-repeat: repeat;
    padding-top: 2%;
    height: 70vh;
    max-height: 70vh;
    }

.custom-navbar {
  width: 80%;
  border-radius: 20px;
  backdrop-filter: saturate(200%) blur(10px);
  background-color: hsla(0,0%,100%,.8)!important;
  position: relative; /* Änderung der Position auf fixed */
  top: 0%; /* Oberer Rand des Viewports */
  left: 50%; /* Horizontal zentrieren */
  transform: translateX(-50%); /* Horizontale Zentrierung anpassen */
  z-index: 1;
  font-size: 20px;
}


.gn_cards {
  backdrop-filter: saturate(200%) blur(10px);
  background-color: hsla(0,0%,100%,0.76)!important;
  border-radius: 15px;
}

.logo {
  width: 30%;
}

.startgame_area{
  text-align: right; 
}

/* Buttons */
.startgame_button{
  background-color: #a19577;
  border:none;
  padding: 0.2%;
  height:100%;
  
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.8);
  border-radius: 5px;

  font-weight: bold;
  text-shadow: 1px 2px 5px rgba(0, 0, 0, 0.2); /* Add text shadow */

}

.timer_button{
  border-radius: 5px;
  border-color: #808080;
}


.circle {
  width: 50px; /* Adjust the size of the circle as needed */
  height: 50px; /* Adjust the size of the circle as needed */
  background-color: #333; /* Adjust the background color as needed */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -25px; /* Adjust this value to position the circle half on the border */
  display: flex;
  justify-content: center;
  color: #fff; /* Adjust the text color as needed */
  font-weight: bold;
  font-size: 30px;
      }


.circle_position{
  position: relative;

}


/* page2 */

.bomb-symbol {
width: 100px;
height: 100px;
border-radius: 50%;
font-size: 40px;
color: black; /* Hier die Schriftfarbe entsprechend anpassen */
text-decoration: none;
background: url("/asset/graphics/explosion.png") center/cover; /* Verwendung von 'background' anstelle von 'background-image' */
}

.colony-symbol {
width: 100px;
height: 100px;
border-radius: 50%;
font-size: 40px;
color: black; /* Hier die Schriftfarbe entsprechend anpassen */
text-decoration: none;
background: url("/asset/card_icon/victory_point.png") center/cover; /* Verwendung von 'background' anstelle von 'background-image' */
}