body
{
    font-family: Arial, Helvetica, sans-serif;
    background: #4A4A4A;
    color: white;
}

h1 
{
    color: white;
}

a:visited{
    color: white;
}

.ShopPage
{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.ShopGridLayout 
{
    display: flex;
    flex-direction: row;
    padding: 10px;
    flex-wrap: wrap;
    width: 90%;
}

.ShopGridLayoutItem img 
{
    width: 300px;
    height: 300px;
    color:white;
}

.ShopGridLayoutItem 
{
    margin: 20px;
    border: 1px solid lightgray;
    width: 300px;
    height: 638px;
}

.ShopGridLayoutItem h5 
{
    display: flex;
    font-size: 40px;
    align-self: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid lightgray;
    color: white;
    text-decoration: none;
}

.ShopGridLayoutItem p 
{
    display: flex;
    font-size: 40px;
    align-self: center;
    justify-content: center;
    text-align: center;
    height: 90px;
    color: white;
}

.ShopGridButton button
{
    color: white;
    background-color: #393939;
    border: 1px solid lightgray;
    display: flex;
    height: 150px;
    width: 300px;
    font-size: 40px;
    margin: 30px;
    align-items: center;
    justify-content: center;
}

.NavMenu
{
    color: white;
    background-color: #393939;
    border: 1px solid lightgray;
    display: flex;
    width: 300px;
    height: 90vh;
}

.NavMenu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.NavMenu li a {
    display: block;
    width: 280px;
    padding: 10px;
}

.NavMenu li a:hover {
    background-color: #555;
}