body{
    font-family: 'Raleway', sans-serif;
}

div.container{
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

div.nav-bar{
    font-family: 'Pangolin', cursive;
}
    
div#nav-bar {
    position: fixed;
    right: 30vw;
    left: 30vw;
    top: 10px;
    z-index: 1;
}

table.nav-links {
    width: 100%;
    
}

table.nav-links > tbody > tr > td {
    padding: 2px 10px 2px 10px;
    /* border: 1px solid black; */
    border-radius: 10px;
    text-align: center;
    background-color: white;
}

table.nav-links > tbody > tr > td:hover {
    background-color: whitesmoke;
}

div.nav-bar a{
    text-decoration: none;
    color: black;
}

div#bottom-navbar{
    position: absolute;
    right: 30vw;
    left: 30vw;
}


img#banner{
    width: 35vw;
    display: block;
    clear: both;
    margin: 20px auto 5px auto;
    padding-top: 50px;
}

div.main-content{
    /* background-color: burlywood; */
    width: 80vw;
    position: relative;
    left: 10vw;
    right: 10vw;
    padding: 20px;
    /* z-index: -1; */
}

div.footer{
position: absolute;
    right: 30vw;
    left: 30vw;
    margin-top: 50px;
    padding: 10px;
    text-align: center;
}

img.footer-icon{
    height:40px;
    margin: 0 15px 0 15px;
}

img.footer-icon:hover{
    background-color:whitesmoke;
    border-radius: 10px;
}

div.body-content{
   /* background-color: aquamarine;  */ 
    padding: 20px;
}

div.body-content h2{
    font-family: 'Pangolin', cursive;   
}

div.product-container{
    width: fit-content;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    vertical-align: top;
}

div.product-name{
    font-family: 'Pangolin', cursive;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 30%;
}

div.product-image > img{
    width: 200px;
    display: block;
    clear: both;
    border-radius: 5px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

div.product-image.enlarged{
    width: 600px;
    height: 600px;
    background-repeat: no-repeat;
    background-position: center;
    
} 
div.product-image.enlarged > img{
    display: none;
}

div.add-to-cart-button{
    margin-top: 20px;
}

div#about, div#faq, div#contact, div#commissions{
    width: fit-content;
    padding: 20px;
    border: 1px solid black;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    display: inline-block;
    vertical-align: top;  
}

img.commission-example{
    float: right;
    padding-right: 50px;
    padding-left: 20px;
    margin-top: -40px;
}

div#commissions > h2{
    clear: right;
}

form#product-php-creator > input{
    margin: 5px;
}

input#product_name, input#medium {
    width: 500px;
}

input#price, input#shipping {
    width: 100px;
}

button#create_product_button{
    background-color: white;
    padding: 5px;
    border-radius: 5px;
    border-width: 1px;
    margin: 20px 0px;
}