body {
  font-family: sans-serif;
  margin: auto;
  max-width: 100%;
    
    a {
      text-decoration: none;
      color: black;
      
      &:hover {
        color: darkgray;
      }
    }  

    
    .navbar {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      
      background-color: #DEE5EE;
      border-radius: 2px;
      width: 100%;
      height: 100px;
      margin-bottom: 50px;
    
      a {
       color: #3B3B3B;
       display: inline-block;
       font-size: 15px;
       padding: 10px;
       text-decoration: none;
    
        &:hover {
          color: #ffffff;
        }
      }
      
      .shop {
        a {
          padding: 20px;
        }
      }
    }
    
    #content {
        padding-left: 100px;
        padding-right: 100px;
        max-width: 100%;
        margin-bottom: 100px;
        
        a {
            font-weight: bold;
        }
    }
        
        
    &#start {
        #content {

            #info {
                .right { 
                    img {
                        width: 100%;
                        border-radius: 10px;
                    }
                }
            }
            
            #product-section {
                margin-top: 200px;
                margin-bottom: 200px;
                
                a {
                    font-weight: normal !important;
                }
                
            
                .heading {
                    margin-bottom: 20px;
                }
                
                #products {
                    display: flex;
                    flex-direction: row;
                    flex-wrap: wrap;
                    justify-content: space-between;
                    text-align: center;
                
                    .pack {
                        height: 200px;
                        width: -webkit-fill-available;
                        max-width: 220px;
                        margin-bottom: 100px;
                        background: bisque;
                        border-radius: 10px;
                    
                        
                        img {
                            width: auto;
                            height: 100%;
                        }
                        
                        .productInfo {
                            text-align: left;
                            
                            .name {
                            
                            }
                        
                            .info {
                                color: grey;
                            }
                        
                        }
                    
                    }
                }
            }
            
        }
        
    }

    &#shop {
         #content {
            max-width: 600px;
            margin: 0 auto;
            padding: 20px !important;
            border: 1px solid lightgrey;
            border-radius: 10px;
            margin-bottom: 50px;
         
            h1 {
                margin-bottom: 50px;
            }
         
            #cart {
                display: flex;
            
                #image {
                    background: bisque;
                    border-radius: 10px;
                
                    img {
                        max-width: 200px;
                    }
                }
                #article {
                    display: flex;
                    padding-left: 20px;
                
                    .title {
                        font-weight: bold;
                    }
                    .price {
                        font-weight: bold;
                    }
                }
            }
         }
    }

    &#product {
     
        .image {
        
            .card {
                background-color: bisque;
                border-radius: 10px;
            }
            .big {
                img {
                    width: 100%;
                    max-width: 400px; 
                    margin: 0 auto;
                }
                
            }
        }
        .product {
            padding-left: 100px;
            .cat {
                color: grey;
            }    
        }
    }

    &#allproduct {
        #products {
            display: flex;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: center;
        
            .pack {
                height: 200px;
                width: -webkit-fill-available;
                max-width: 220px;
                margin-bottom: 100px;
                background: bisque;
                border-radius: 10px;
            
                a {
                    font-weight: normal !important;
                }
                
                img {
                    width: auto;
                    height: 100%;
                }
                
                .productInfo {
                    text-align: left;
                    
                    .name {
                    
                    }
                
                    .info {
                        color: grey;
                    }
                
                }
            
            }
        }
    }

    &#login, &#register {
        input.fail {
            border: 1px solid red;
        }
        .check.fail {
            color: red;
        }
    }



    #footer {
        background-color: #DEE5EE;
        border-top: 1px solid grey;
        min-height: 300px;
        width: 100%;
        text-align: left;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        
        .footerWrap {
            flex: 1 1 0px;
            padding-left: 50px;
            h4 {
                margin-bottom: 40px;
            }
            ul {
               list-style-type: none; 
                padding-left: 0;
                
                li {
                    padding-bottom: 20px;
                }
            }
        }
    }
}


@media (max-width: 576px) {
    #content {
        padding: 20px !important;
        
    
        body#start {
            #product-section {
                .h2 {
                    display: inline-block;
                    width: 100%;
                }
                .all {
                    float: initial !important;
                }
                #products {
                    justify-content: space-evenly !important;
                    
                    .pack {
                        .productInfo{
                            .price span{
                                float: initial !important;
                            }
                        }
                    }
                }
            }
        }
    }

    #footer {
        flex-direction: column !important;
    }
}