html, body { 
    margin: 0; 
    padding: 0; 
    overflow-x: hidden; 
}

body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    transition: background 1s ease-in-out;
    flex: 1;
}

.title-section{
    h1{
        font-size: 3em;
        margin-top: 0;
        margin-bottom: 0;   
    }
    p{
       
        font-size: 1.5em;
        margin-top: 0;
        margin-bottom: 0;
    }
    img{
        width: 30%;
        height: auto;
        max-width: 100%;
    }
    margin-top: 5%;
    margin-bottom: 10%;
    background-color: #B0E0E6; /* powder blue */
}
.about-us{
    h1{
        font-size: 3em;
        margin-top: 0;
        margin-bottom: 0;   
    }
    p{
       
        font-size: 1.5em;
        margin-top: 1.5em;
        margin-bottom: 0;
        margin-right: 150px;
        margin-left: 150px;
    }
    background-color: #B0E0E6; /* powder blue */
    max-height: 20vh;
}

nav {
    background: #333;
    padding: 10px;
}
nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
}
.section {
    height: 70vh;
    margin: 0;
    padding: 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    h1{
        font-size: 3em;
        margin-top: 10;
        margin-bottom: 40px;
    }
}
.footer {
          background: #333;
          color: white;
          padding: 10px;
          position: fixed;
          bottom: 0;
          width: 100%
        }
#section2 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}   
.card {
    font-style: 'Poppins';
    width: 200px;
    max-width: 100%;
    background: goldenrod;
    border-style: solid;
    border-color: #885c2c;
    border-width: 10px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    box-sizing:content-box;
    transition: transform 0.2s ease-in-out;
}
.card:hover { 
    transform: translateY(-5px);
}
.card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.product {
    color: black;
    font-size: 40px;
    margin-top: 10%;
    margin-bottom: 3%;
}
.price{
    color: black;
    font-size: 16px;
    margin-top: 3%;
    margin-bottom: 3%;
}
.stars {
    border-radius: .5em;
    color: gold;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
}
.salty_scalp_rating {
    color: black;
    font-size: 16px;
    margin-top: 3%;
    margin-bottom: 0;
}