body{
    color: #f6f1f1 ;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    margin: 0;
    overflow-x: hidden;

}
.wrapper{
    height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 10px;
}
header{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transform-style: preserve-3d;
    z-index: -1;
}
#background{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -10;
    transform: translateZ(-5px) scale(1.5);
    
}
#navbar{
    position: sticky;
    width:100%;
    height: auto;
    background: #333;
    color: white;
    top: 0;
}
#title{
    color: white;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
  }
#story p{
    width: 65%;
}
  .villager-icon {
    opacity: 0;
    transition: opacity 1s;
  }

.story-icon {
    width: 75px; 
    height: 75px; 
    border-radius: 50%;
    opacity: 70%;
  }
  .fade-in {
    opacity: 2 !important;
  }
  #story{
  margin: 20px;
  padding:10px;
  color: white;
  background-color: #1a1818c4;
  width: 70%;
  height: auto;
  display: flex;
  flex-direction: column;
}
#story-intro, #Ai-intro, #fighter-intro, #fighter-spirit{
  display: flex;
  font-size: 18px;
  padding: 5px;
  flex-direction: row;
  justify-content: space-around;
}
#story-intro, #fighter-intro, #fighter-spirit{
  color: rgb(159, 192, 154);
}
#Ai-intro{
  color: rgb(230, 50, 50);
}
.story-icon{
  opacity: 100%;
  width: 100px;
  height: 100px;
}
#game-container{
    height: 100vh;
    background-color: #040d12; 
    display: flex;
    flex-direction: column;
}
#gamedisplay-div{
    display: flex;
    flex-direction: column;
}
#weaponchoice-div{
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
#choice-display{
    display: flex;
    justify-content: space-around;
}
.choicedisplay-player, .choicedisplay-computer{
    display: none;
}
.display, .display-computer{
    fill: #f6f1f1;
    border: 3px solid #ce271b;
    border-radius: 5px;
    height: 150px;
    width: 150px;
}

#points-div{
    display: flex;
    justify-content: space-around;
}
#weapons-container{
    display: flex;
    justify-content: space-around;
}

.weapon-div{
    display: flex;
    flex-direction: column;
}
.weapon-button{
    border: 0;
    width: 205px;
    height: 205px;
    background-color: #060b0e;
    padding: 0;

}
.weapon{
    border-radius: 7px;
    width: 190px;
    height: 190px;
}
.weapon:hover{
    transform: scale(1.05, 1.05);
    transition: 0.1s;
    
}
#remarks-div{
    margin-top: 10px;
    color: rgb(204, 28, 28);
}
#end-game-container{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #040d12c2;
    display: none;
    justify-content: center;
    align-items: center;

}
#end-button{
    background: rgb(180, 42, 42);
    color: white;
    font-size: 18px;
    width: 105px;
    height: 50px;
    border: none;
    border-radius: 10px;
}
