header{
    box-shadow: 0 0 8px .1px rgba(0, 0, 0, 0.4);
}

#eqhp
{
    text-align: center;
    padding: 1% 0;
}
#eqhp h1{
    color: rgb(255, 0, 34);
}
#eqhp img
{
width: 20%;
}

#eqhp p:after, #eqhp p:before{
    content: " - "
;}

#equip
{
    width: 100%;
    height: 60vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

#equip div{
    width: 30%;
    height: 100%;
    margin: .5%;
    border-radius: 10px;
    display: grid;
    text-align: center;
    place-items: center;
    box-shadow: 0 0 8px .1px rgba(0, 0, 0, 0.2);
}
#equip img{
    width: 100%;
}

#equip section h1{
    text-align: start;
    padding: 2% 0;
}

#equip button{
    background-color: transparent;
    padding: 5% 0;
    width: 70%;
    border-radius: 30px;
    border: none;
    color: black;
    transition: .5s;
    box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.145);;
}

#equip button:hover{
    background:rgb(255, 0, 34);
    color:white;
    border: none;
    font-variant: small-caps;
}


#button
{
    height: auto;
    display: grid;
    place-items: center;
    padding: 2% 0;
}

#button a
{
    display: flex;
    justify-content: center;;
    border-radius: 30px;
    background:rgb(255, 0, 34);
    color: white;
    width: 20%;
    padding: .8% 0;
    margin: .3% 0;
}

#button img 
{
    width: 8%;
    padding: 0 5%;
    filter: grayscale()
}






@media only screen and (max-width: 900px)
{
    header{
        box-shadow: none;
    }
    #hmb div
    {
        box-shadow: 0 0 8px .1px rgba(0, 0, 0, 0.397);
    }
    #hmb:hover div {
        box-shadow: none;
    }
    
    #eqhp
    {
        text-align: center;
        height: auto;
        display: grid;
        padding: 10% 0;
        place-items: center;
    }

    #eqhp img
    {
        width: 60%;
    }
    
    #equip
    {
        width: 100%;
        height: auto;
        display: block;
    }
    
    #equip div{
        width: 95%;
        height: auto;
        margin: 0 auto;
        margin-block: 5%;
        padding: 3% 0;
        box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.4);
    }
    
    #equip section h1{
        padding: 2% 0;
        font-size: 120%;
    }
    
    #equip button{
        width: 100%;
        padding: 5% 0;
        border: none;
        background: rgb(255, 0, 34);
        color:white;
        font-variant: small-caps;
    }
    #equip button:hover{
        background: transparent;
        border: .1px solid rgb(24, 134, 24);;
        color: var(--color);
    }

    
#button
{
    height: 150px;
    display: grid;
    place-items: center;
}

#button a
{
    display: flex;
    align-items: center;
    justify-content: center;;
    border-radius: 30px;
    background:rgb(255, 0, 34);
    color: white;
    width: 60%;
    padding: 5% 0;
}

#button img 
{
    width: 10%;
    padding: 0 5%;
    filter: grayscale()
}

    
}