*{
    box-sizing: border-box;
}
html{
    font-size: 62.5%; /* 16px * 62.5 = 10px = 1rem */
}
body{
    height: 100vh;  /* vh=viewport height */
    font: 1.6rem Helvetica, Arial;
    margin: 0;
    background-color: white;
}
a{
    text-decoration: none;
    color:#000000;
}
a:hover{
    color: #f08040;
}
.grid-container{
    display: grid;
    grid-template-areas:
    'header'
    'main'
    'footer';
grid-template-columns: 1fr;
grid-template-rows: 5rem 1fr 5rem;
height: 100%;
}
/*header{
    grid-area: header;
    background-color: #203040;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
} */
/* Style the header */
.header {
    padding: 10px 16px;
    background: #555;
    color: #f1f1f1;
}
#myHeader {
    position: fixed;
    width: 100%;
}
/* Page content */
.content {
    padding:16px;
}
/* The sticky class is added to the header with JS when it reaches its scroll position */
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}
.sticky + .content {
    .sticky + .content {
    padding-top: 102px;
}
}

header a{
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
}
header a:hover {
    color: #f08040
}


.brand a{
    font-size: 3rem;
}
footer{
    background-color: #203040;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#ffffff
}
#myFooter{

}
/* Products */
.products{
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}
.products li{
    flex: 0 1 30rem;
    margin: 1rem;
    margin-bottom: 0;
    height: 42rem;
    border-top: 0.2rem #e0e0e0 solid;
}
.product {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
}
.product img{
    max-height: 26rem;
    max-width: 22rem;
    margin-top: 2rem;
    border-radius: 20px;
}
.product-name{
    line-height: 1rem;
}
.product-brand{
    font-size: 2rem;
    
}
.product-price{
    font-size: 2rem;
}
