@import url("https://use.typekit.net/fmj3umn.css");
*{
    font-family: "piepie", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Navigation Panel */
nav{
    display: flex;
    justify-content: center;
    background-color: rgb(15, 221, 187);
    margin-top: -8px
}
nav a{
    color: rgb(0, 0, 0);
    text-align: center;
    text-decoration: none;
    font-weight: 100;
    padding-bottom: 4px;
    padding-top: 8px;
    width: 20%;
    font-size: large;
    background-color: rgb(15, 221, 187);
    border-radius: 0 0 10px 10px;
    transition: transform 0.15s ease, color 0.15s, background-color 0.15s;
}
nav a:hover{
    background-color: rgb(19, 180, 153) ;;
    color:aliceblue;
    transform: translateY(5px);
}

/* css cont */
h1{
    font-size: 3em;
    background-color: rgb(206, 12, 131);
    color:aliceblue;
    height: 70px;
    text-align: center;
    padding: 20px;
    margin-top: 0px;
}
body{
    text-align: center;
    margin: 0;
    background-image: url("img/Background_Wrap.png");
}
.buffer{
    display: flex;
    justify-content: center;
    align-content: center;
}
img{
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

/* Info Window */
#infoWindow{
    width: 60em;
    height: 8em;
    display: block;
    margin: 0 auto 2% auto;
}

/* Hint Text */
#textHint{
    font-size: 30px;
    margin-bottom: 15px;
}

/* Hint Image */
#imgHint{
    width: 70px;
    height: 70px;
    background-color: rgb(148, 203, 235, .5);
    border-radius: 20px;
    margin: auto;
}
#imgHint img{
    width: 50px;
    margin: 10px 10px 0px;
}
#imgHint>div:hover{
    transition: transform 0.2s ease;
    transform: scale(1.2);
}

/* Answer Text */
#textAnswer{
    margin-bottom: 5px;
}

/* Answer Imame */
#imgAnswer img{
    width: 100px;
}

/* Buttons */
button{
    background-color: rgb(110, 144, 255, .5);
    border-radius: 10px;
    border: none;
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 100;
    font-style: italic;
}
button:hover{
    transition: transform 0.1s ease;
    transform: scale(1.1);
}

/* Checkbox */
input:hover{
    transition: transform 0.1s ease;
    transform: scale(1.1);
}

/* Weapon Choices Group */
#weaponChoices{
    display: inline-flex;
    width: 490px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;
    background-color: rgb(255, 153, 0, .5);
    border-radius: 30px;
    border: rgb(255, 153, 0), 10px solid;
}
#weaponChoices img{
    width: 100px;
    margin: 0 10px 10px;
}
#weaponChoices>div:hover{
    transition: transform 0.2s ease;
    transform: scale(1.2);
}