/* Reset some default margin and padding */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Basic styling */
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

header {
    background-color: #333;
    color: #fff;
    padding: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}
.navb{
    font-size: 25px;
    text-transform: uppercase;
}
.product{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px;
}
.card {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    max-width: 300px;
    margin: auto;
    text-align: center;
    font-family: arial;
  }
  
  .price {
    color: grey;
    font-size: 22px;
  }
  
  .card button {
    border: none;
    outline: 0;
    padding: 12px;
    color: white;
    background-color: #000;
    text-align: center;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
  }
  
  .card button:hover {
    opacity: 0.7;
  }
  
#home{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
    flex-direction: column;
}
.bnr img{
    width: 100%;
    height: 100%;    
}
#about{
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 20rem;
    flex-direction: column;
}
nav ul {
    list-style-type: none;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
}


footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: #fff;
}



