*{
    margin: 0px;
    padding: 0px;
}
.container{
    height: 10vh;
    background-color:darkred;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.container nav ul{
    display: flex;
    list-style-type:none;
}
.container nav ul li a{
    margin: 0px 10px;
    text-decoration: none;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
#logo{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: white;
}
.landing{
    height: 90vh;
    background-image: url(pexels-pixabay-414837.jpg);
    background-size: cover;
    background-position: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* padding: 100px;  */
    line-height: 4.5ch;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.landing button{
    margin: 15px auto;
    color: rebeccapurple;
    border-color: aqua;
    border-radius: 7px;
    padding: 2px;
    font-size: 1em;
}
h2{
    line-height: 5;
}
 .buttons{
    display: flex;
    justify-content: space-evenly;
} 
.buttons button {
    width: 50vh;
    height: 50uh;
    padding: 5px;
    justify-content: space-between;
    /* background-color: brown; */
}
.products image{
    height: 250px;
    width: 250px;
    border-radius: 20px;
}
.products{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    /* line-height: 5; */
    text-align: center;
}
.foot{
    background-color: rebeccapurple;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}


