/*  */
body {
    background-color: #0b3d0b;
    font-family: 'Courier New', Courier, monospace;
    color: #00ff00;
    display: flex;
    /* justify-content: center; */
     /* align-items: center; */
    margin: 0;
    height: auto;
    text-align: center; 
}

/*PROPIEDADES PARA EL CONTENEDOR PRINCIPAL*/
.container{
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
}

/*PROPIEDADES PARA EL CONTENEDOR DONDE SE MUESTRA EL INVENTARIO*/
.inventory{
    width: 50%;
    height: 100%;
    text-align: left;
}

/*PROPIEDADES PARA EL CONTENEDOR DONDE SE MUESTRA LA DESCRIPCION E IMAGEN DE UN ITEM*/
.legend{
    width: 50%;
    height: 40%;
}

.legend .arma-img{
    width: 80%;
    height: auto;
}

.legend .ammo-img{
    width: 90%;
    height: auto;
}

/*PROPIEDADES PARA EL CONTENEDOR DE LA DESCRIPCION*/
.desc{
    padding: 0;
    width: 95%;
    height: 60%;
}

/*ELEMENTOS QUE CONTIENE EL CONTENEDOR .desc*/
.desc ul{
    margin: 0;
    width: 90%;
    position: relative;
    left: -20px;
}

.desc ul li{
    width: 90%;
    text-align: left;
    display: flex;
    background-color: #0d480d;
    padding: 0px;
    padding-top: 4px;
    height: 22px;
    margin: 4px
}

.info{
    width: 90%;
    margin-left: 20px;
    text-align: left;
    padding: 0px;
}

.info p{
    text-align: left;
    font-weight: bold;
    padding: 0px;
    margin: 0px;
}

.left{
    text-align: left;
    border: none;
    width: 25%;
    padding: 0;
    padding-bottom: -5px;
    margin-bottom: 0px;
    height: 17px;
    padding-left: 8px;
}

.left img{
    height: 17px;
    margin-bottom: 0px;
    padding-left: 210%;
}

.left #ammo-img{
    padding-left: 0px;
}

.fly{
    position: absolute;
    top: 5%;
    height: 50%;
    background-color: #0d480d;
    width: 35%;
    padding-left: 8px;
}

.right{
    text-align: right;
    width: 80%;
    font-weight: bolder;
    padding-right: 8px;
}

li{
    text-align: left;
    justify-content: left;
    align-items: start;
    list-style: none;
    width: 85%;
    vertical-align: middle;
    margin: 3px 0 0 0;
    padding: 4px;
    height: auto;
}

#items li:hover{
    cursor: url(hand.cur), pointer;
}

.img-container{
    height: 45%;
    width: 100%;
}

.img-class{
    height: 11em;
    width: auto;
    border: 1px solid;
}

.opInfo{
    text-align: left;
    border: 1px solid;
    padding: 8px;
    font-weight: bold;
}

.focused{
    background-color: #00ff00;
    color: #0b3d0b;
    list-style: disc inside;
}

button{
    padding: 10px;
    border: 2px solid #00ff00;
    background: none;
    color: #00ff00;
    font-size: 1em;
    cursor: pointer;
    position: absolute;
    top: 95%;
    display: inline;
    width: fit-content;
}

button:hover{
    padding: 10px;
    border: 2px solid #00ff00;
    color: #0b3d0b;
    background-color: #00ff00;
    font-size: 1em;
}