*{
    margin: 0;
    padding: 0;
}
.container{
    height:10vh;
    background-color: rgb(40, 40, 87);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;   
}
.container nav ul {
    display: flex;
    list-style-type: none;
}
.container nav ul li a{
    margin: 0px 10px;
    text-decoration: none;
    color: white; 
}
.landing{
    height: 90vh;
    width: 100%;
    background-image: url(image.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
}
.landing button{
    margin: 15px auto;
    background-color: black;
    color: white;
    border-color: grey;
    border-radius: 7px;
    padding: 2px;
    font-size: 1em;
}
.buttons{
    display: flex;
    justify-content: space-evenly;
}
.buttons button{
    width: 20%;
    padding: 5px;
    background-color: black;
    color: white;
    border-color: black;
    border-radius: 5%;
}
.pro img{
    height: 250px;
    width: 250px;

}
.products{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.pro h4{
    text-align: center;
}
.foot{
    background-color: rgb(19, 15, 68);
    color: white;
    text-align: center;
}