body{
    background-color: yellow;
    margin: 0;
    padding: 0;
}

#one{
/*    background-color: aqua;*/
}
.flex1{
/*    background-color: bisque;*/
    display: flex;
    flex-direction: column;

}
.title{
    color: black;
    font-family: sans-serif;
    text-align: center;
    text-transform: capitalize;
    font-style: italic;
    padding: 10px;
}
.head{
    color: darkslategray;
    padding: 20px;
    align-self: flex-start;
}
.flex2{
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -95vmax;

}
.logo{
    width: 15vmax;

}
.cool{
    width: 40vmax;
}
.alove{
    background-image: url(../images/Alove.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vmax;
    display: flex;
}
.lemon{
    background-image: url(../images/Lemon.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 50vmax;
    display: flex;
    align-items: flex-end;
}
.flex3{
/*    background-color: chocolate;*/
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 75vmax;
    margin-left: auto;
    margin-right: auto;
}
ul{
    width: 50vmax;
    height: 15vmax;
    align-self: center;
}
li{
    text-align: center;
    display: block;
    font-size: 3vmax;
    padding: 2vmax 0;
    font-weight: bolder;
    font-family: sans-serif;
}
.flex4, .flex5, flex6, flex7{
    display: flex;
    flex-direction: column;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
.bbox1, .bbox2{
    display: flex;
    flex-direction: column;
    background-color: darkblue;
    padding: 2vmax;
    height: 22vmax;
    justify-content: center;
    margin-bottom: 2vmax;
}
h1{
    color: white;
    text-align: center;
    font-size: 3.5vmax;
    font-family: sans-serif;
    margin-bottom: 3vmax;
}
p{
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: justify;
    font-size: 1.6vmax;
    line-height: 2.5vmax;
}
.flex5{
    justify-content: space-around;
}
.bath{
    display: block;
    width: 40vmax;
    padding: 0;
    margin: 0;
    
}
#unique{
    color: red;
    font-weight: 600;
    font-size: 5vmax;
}
.rbox1, .rbox2, .rbox3, .rbox4 {
    display: flex;
    flex-direction: column;
    background-color: red;
    padding: 5vmax;
    height: 20vmax;
    justify-content: center;
    margin-bottom: 2vmax;
}
h2{
    color: white;
    text-align: center;
    font-size: 2.8vmax;
    font-family: sans-serif;
    margin-bottom: 3vmax;
}
.imp > p{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    padding: 20px;
    margin-top: -10px;
    font-size: 2vmax;
    color: #000;
}
h3{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    font-size: 2vmax;
    font-weight: 600;
    overflow: hidden;
}

h3:before,
h3:after {
    background-color: #333;
    content: "";
    display: inline-block;
    height: 0.5vmax;
    position: relative;
    vertical-align: middle;
    width: 50%;
}
h3:before {
    right: 0.5em;
    margin-left: -50%;
}
h3:after {
    left: 0.5em;
    margin-right: -50%;
}
.jacobsci{
    width: 20vmax;
    margin-top: 20px;
}


@media only screen and (min-width: 600px){
    .flex1{
        flex-direction: row;
    }
    .flex2{
    margin-top: -40vmax;

    }
    .flex3{
    margin-top: 18vmax;
    }
    .flex4, .flex5, .flex6, .flex7{
    display: flex;
    flex-direction: row;
    }
    .bbox1, .bbox2{
        flex: 1;
        margin: 1vmax;
    }
    .rbox1, .rbox2, .rbox3, .rbox4 {
        flex: 1;
        margin: 1vmax;
    }
    ul{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 5vmax;
        padding-top: 2vmax;
        
    }
    li{
        flex-grow: 1;
        height: 5vmax;
        padding: 0;
        text-align: center;
        margin: 0;
    }
}













