input[type=text] {
    padding: 6px;
    border: none;
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
    width: 300px;
  }

.listweapons{
    position: relative;
    max-height: 100%;
    height: auto;
    width: 100%;

    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;

    overflow-y: auto;

    gap: 5px;

    z-index: 10;
}
.weapon{
    padding: 0;
    /* margin-left: 5px;
    margin-right: 5px; */
    margin-top: 15px;
    width: 400px;
    height: auto;
    /* min-height: 200px; */
    background-color: rgba(46, 46, 46, 0.596);
    border-radius: 10px;
    border: 2px solid white;
    transition: 0.4s;
}
.weapon h3.weapon-name{
    margin-top: 5px;
    margin-bottom: 5px;
}
.weaponitems{
    width: 100%;
    /* display: flex;
    flex-direction: row; */
}
.weaponitemst{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
.wtype{
    color: yellow;
    text-decoration: underline;
    text-shadow: 0px 0px 0px rgba(255, 0, 0, 0);
}
.wname{
    list-style: none;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 5px;
    font-size: 18px;
    font-weight: bolder;
    text-shadow: 2px 2px 5px rgb(255, 0, 0);
}

.backbtnmodif{
    top: 5px;
    left: 5px;
    position: fixed;
    height: 50px;
    width: 50px;
    background-color: white;
    border-radius: 50px;
    z-index: 11;
}
.backbtnmodif:hover{
    transition: 0.3s;
    background-color: red;
}