/* General Styles Below */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: 1px solid red;
}

img{
    width: 100%; /* dress code */
}

a{
    text-decoration: none;
}

/* Main Styles Below */

.flex-container{
    display: flex;
}

nav{
    height: 60px;
    align-items: center;
}

.navlogo{
    flex-grow: 1;
}

.navlinks{
    flex-grow: 3;
}

.navlogo div{
    width: 50%;
    height: 100%;
    padding-left: 10px; /* this padding to match navlinks ul li 10px gap right */
}

.navlinks ul{
    list-style: none;
    justify-content: flex-end;
}

.navlinks ul li{
    margin: 0 10px;
}

.navlinks ul li a{
    display: block;
    padding: 10px; /* if you change this value, also change navlogo div padding-left*/
}

main{
    flex-direction: column;
}

.hero{
    height: 300px;
}

.hero img{
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.heroproduct div{
    width: 50%;
    height: 300px;
}

.heroproduct div img{
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.heroproducttext{
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.heroproducttext p{
    margin: 10px 0px;
}

.heroproducttext a{
    padding: 10px;
    width: 70px; /* Adjust width to fit text */
    text-align: center;
}

.productdescription{
    align-items: center;
    height: 275px;
}

.productdescription div{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 40px;
}

.productdescription h2{
    margin-bottom: 10px;
}

.productdescription a{
    padding: 10px;
    width: 70px; /* Adjust width to fit text */
    text-align: center;
}

.aboutsection{
    flex-direction: column;
    padding: 20px 40px;
}

.aboutsection div h3{
    margin-bottom: 10px;
}

footer{
    padding: 20px 0;
    justify-content: center;
}

footer div div p{
    text-align: center;
}

.socials{
    justify-content: center;
}

.socials div{
    flex-grow: 1;
}

.socials div img{
    height: 50px;
    object-fit: contain;
    object-position: center;
}



