@import url('https://fonts.googleapis.com/css2?family=Frijole&display=swap');

/* .item-list {
    display: flex;
    width: 100vw;
} */

.buttonNext {
    position: absolute;
    bottom: 15%;
    right: 10%;
}

.item {
    display: inline-block;
}
.item-image {
    width: 30vh;
    height: auto;
}

.item:hover {
    cursor: pointer;
    filter: drop-shadow(5px 5px 5px rgb(255 255 0));
}

#items {
    background-color: white;
}

.selected-item {
    filter: brightness(200%) drop-shadow(5px 5px 5px rgb(0 255 0));
}

.hmpg {
    margin: 0;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

h1 {
    color: black;
    font-family: 'Frijole';
    display: flex;
    justify-content: center;
    text-align: center;
    filter: drop-shadow(0 0 0.75rem crimson);
}

.name {
    color: black;
    font-size: 50px;
    filter: drop-shadow(0 0 0.75rem crimson);
}

.gameover {
    color: black;
    font-size: 150px;
    filter: drop-shadow(0 0 0.75rem crimson);
    margin-top: 10%;
}


p {
    color: black;
}

a {
    text-decoration : none;
}

/* button { */
.hmpg-bttn {
    margin: 0 auto;
    display: block;
}

/* STYLE BUTTON */
button { 
    margin-top: 5px;
    width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;

    background-color: #44330d;
    border: none;
    font-size: 15px;
    font-family: 'Frijole';
    cursor: pointer;
    border-radius: 4px;
  
    box-shadow: inset 0 0 0 0 #994412;
    transition: ease-out 0.3s;
    outline: none;
    position: relative;
    z-index: 1;
    color: white;
    /*border: solid;
    border-color: #428df5;*/
    color: white;
  
  }
  
  button:hover{
    cursor: pointer;
    box-shadow: inset 350px 0 0 0 #b6bab7;
    background-color: #b6bab7;
    /*border: solid;
    border-color: #c2dbff;*/ 
  }
  
  button:before{
    /* transition: 0.3s all ease; */
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: "";
    background-color: #7a240a;
  }
  
  button:hover:before{
    /* transition: 0.5s all ease; */
    left: 0;
    right: 0;
    opacity: 1;
    z-index: -1;
  }

/* button {
    background-color: white;
    width: 200px;
    font-size: 20px;
    padding: 10px;
    border-radius: 5px;
    border: 3px solid black;
    color:black;
    cursor: pointer;
    margin-top: 670px;
} */

.box {
    font-family: 'Frijole';
    font-size: 2em;
    width: 90%;
    height: 350px;
    left: 5%;
    bottom: 20px;
    z-index: 1;
    text-align: center;
    position: absolute;
    background-image: url("Images_Folder/textbox.png");
    background-size: cover;
    margin: auto;

}

.box-text {
    padding: 50px;
    padding-top: 100px;
}

.button1 {
    z-index:2;
    position: absolute;
    left: 15%;
    bottom: 15%;
    width: 30%;
}

.button2 {
    z-index:2;
    position: absolute;
    right: 15%;
    bottom: 15%;
    width: 30%;
}

.buttonRestart {
    position: absolute;
    bottom: 15%;
    right: 10%;

}