*{
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Righteous', cursive;
}

.container {
    width: 80%;
    height: 100%;
    margin: auto;
}

.navbar {
    width: 100%;
    height: 100px;
    background-color: white;
    position: fixed;
    
}

.nav-flex {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
}

.logo {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

.logo h1 {
    max-width: 100%;
    max-height: 100%;
    padding-left: 10px;
    color: rgb(124, 0, 0)
}

.menu {
    width: 45%;
    display: flex;
    margin: 10px 0px;
}

.menu ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu ul a {
    padding: 15px;
    color: black;
    text-decoration: none;
    transition: all 0.5s;
}

.menu ul a:hover {
    border: 2px solid yellow;
    border-radius: 10px;
    color: red;
    background-color: rgb(240, 240, 150);
}

.social {
    width: 15%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0px;
}
.social img {
    max-width: 100%;
    max-height: 100%;
    padding-right: 20px;
}


.header {
    width: 100%;
    height:600px;
}

.header-flex {
    width: 100%;
    height: 100%;
    background-image: url(../images/bgbody\ -\ opacity.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
}

.own-products {
    width: 100%;
    height: 300px;
}

.own-products h1 {
    text-align: center;
    margin: 15px 0px;
}

.own-flex {
    display: flex;
    justify-content: space-between;
}

.o-product {
    margin-left: 10px;
    background-color: rgb(231, 232, 233);
}

.own-products img {
    max-width: 100%;
    border-radius: 5px;
}

.own-products h3 {
    text-transform: capitalize;
    text-align: center;
    padding: 5px 0px;
}
