.logo  {
    display: flex;
    flex: auto;
    justify-content: center;
}

.logo img{
    width:30%;
    margin: 30px 0px;
}

.about, .products {
    display: flex;
    flex:auto;
    flex-wrap: wrap;
    justify-content: center;
}

footer {
    display: flex;
    flex: auto;
    flex-wrap: wrap;
    justify-content: center;
    background-color: lightblue;
}

footer p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 16px;
    margin: 20px;
}
span{
    font-weight: bold;
}
.imgs {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex: auto;
    flex-wrap: wrap;
}

.imgs img {
    margin: 20px;
}

h2{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    color: navy;
    font-size: 20px;
}

.about p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 18px;
    margin: 0px 100px;
    text-align: center;
}


