*{
    outline: 1px solid red;
}

a{
  color: orangered;  
}
a:link{
    text-decoration: none;
  
}
a:visited{
    text-decoration: none;
    color: orangered;
}
a:hover{
    text-decoration: underline;
    color: rgb(218, 105, 0);
}
body{
    overflow-x: hidden;
    margin: 0 auto;
    max-width: 1200px;
    object-fit: contain;
    min-width: 350px;
}

.container{
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    width: 100%;
}

h1{
    text-align: center;
    color: black;
}

h2{
    text-align: center;
}
form{
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.loginform{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.header{
    display: flex;
    width: 100%;
    justify-content: center;
}

#checkmenu{
    display: none;
    flex-wrap: nowrap;
}

.menu{    
    display: flex;
    font-size: 3rem;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;    
}

#cartbuttonmenu{
   display: none;
}

.cartbutton{
    display: flex;
    font-size: 3rem;
    cursor: pointer;
    justify-content: flex-end;
    align-items: center;
    margin-top: 1rem;
    margin-left: 1rem;
}

.logo{
    display: flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    object-fit: contain;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
}
.navlist{
    color: rgb(0, 0, 0);
    background-color: rgb(192, 192, 192);
    border-radius: 5px;
    font-weight: 700;
    list-style: none;
    display: inline-flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
    margin: 2px;
}

.navlist .nav{
    color:black;
}

.fa-solid{
    cursor: pointer;
}

.header-searchbar{
    display: flex;
    justify-content: end;
    padding: 1rem;
    align-items: center;
    height: fit-content;
    float: right;
    width: 100%;   
}

.login{
    display: flex;
    justify-content: center;
    padding: 1rem;
    align-items: center;
    height: fit-content;
    width: 100%;   
}

#textbox{
    width: 200px;
    height: 3rem;

}

.button{
    width: 5rem;
    height: 3rem;
    padding: 1rem;
    border-radius: 5px;
    border: none;
    background-color: orangered;
}



.hero{
    display: block;
    margin: auto;
    width: 100%;
    object-fit: contain;
}

.homepagecategories{
    display: flex;
    flex-direction: column;
    height: 600px;
    justify-content: center;
    align-items: center;
    text-align: center;
    
}

@media screen and (min-width:550px){
    .homepagecategories{
        display: flex;
        flex-direction: row;
        height: auto;
        width: auto;
        justify-content: center;
    }

    .categorytile{
        display: flex;
        margin: 2rem;
        border-radius: 5px;
    }

    .menu{
        display: none;
    }
    .logo{
      justify-content: center;
      width: 85%;
    }
    .cartbutton{
        justify-content: flex-end;
    }
    .navbar{
        width: 100%;
    }
}

.categorytile{
    display: flex;    
}

.footer{
    background-color: rgb(65, 65, 65);
    display: flex;
}
.footerlist{
    background-color: rgb(65, 65, 65);
    height: fit-content;
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    width: fit-content;
}
.footerlist li{
    padding: 5px;
    color: white;
}

.address{
    display: flex;
    color: white;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.prodpageintro{
    padding: 3rem;
}

.filterbtn{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    color: orangered;
    font-weight: 700;    
   }

   .tableText{
    font-size: 11px;
    line-height: 14px;
    /*align: left;*/
    vertical-align: top;
   }
   .tableHeader{
    font-size: 11px;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 14px;
    /*align: left;*/
    background-color: #636363;
   }
  
   .table{
      table-layout: auto;
   }
