*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.container{
    height: 800px;
    max-width: 900px;
    background-color: rgb(234, 195, 238);
    padding: 100px;
}
.box{
    width: 100%;
    height: 100%;
    background-color:rgb(219, 183, 148);
    display: flex;
    align-items: center;
    
}
.box1{
    width: 50%;
    height: 100%;
    background-color: rgb(92, 86, 81);
    display: flex;
    flex-direction: column;
    padding: 5px;
    row-gap: 50px;
    padding-top: 150px;
    
}
.leftside{
    width: 100%;
    display: flex;
    align-items: center;
   position: relative;
}
.gun1{
    width: 100px;
    height: 100px;
    background-color: rgb(45, 167, 238);
    border-radius: 10px;
}
.point1{     
    width:30px;
    height: 30px;
    background-color:brown;
     border-radius: 10px;
    position: relative;
}
.box2{
    width: 50%;
    height: 100%;
    background-color: rgb(92, 86, 81);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 5px;
    row-gap: 50px;
    padding-top: 150px;
}

.rightside{
    display: flex;
    justify-content: right;
    align-items: center;
    position: relative;
    
}

.gun2{
    width: 100px;
    height: 100px;
    background-color: rgb(34, 25, 160);
     border-radius: 10px;
    
}
.point2{
    width:30px;
    height: 30px;
    background-color:brown;
     border-radius: 10px;
}
button{
    height: 50px;
    width: 100px;
    background-color: red;
    color: white;
    font-size:large;
    cursor: pointer;
     border-radius: 10px;
}
span{
height: 50px;
width: 110px;
font-size: x-large;
background-color: white;
 border-radius: 10px;
padding: 5px;
}
.bullets{
    height: 10px;
    width: 10px;
    background-color: black;
    border: 1px solid black;
    border-radius: 5px;
    position: absolute;
}
#bulletLeft, #bulletRight {
  background-color: black;
  
}