html, body{
    background-color: black;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
}
.aboutus{
    width: 75%;
    margin: auto;
}
/* navigation */
nav {
    width: 100vw;
    height: 16vh;
}
nav img {
    width: 20vw;
    margin-left: 40vw;
}
.nav-items {
    width: 100vw;
    display: flex;  
    justify-content: space-around;
}
.nav-items a {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
    color: white;
}
.aboutus-left{
    width: 45%;
    float: left;
    font-size: 22px;
    display: block;
    padding: 40px;
}
.aboutus-right{
    width: 45%;
    float: right;
}
.aboutus-right img{
    width: 100%;
    height: 100%;
}
/* footer */
footer {
    color: white;
}
.footer-top {
    width: 90vw;
    height: 40vh;
    margin-left: 5vw;
}
.footer-initials {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 15vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 36px;
    float: left;
}
.footer-pages, .footer-stores {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37.5vw;
    height: 40vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 20px;
    float: left;
}
.footer-pages a {
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 20px;
}
.footer-stores b, .footer-stores span {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 20px;
}
.footer-stores b {
    line-height: 2.6;
}
.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 8vh;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 18px;
}
.divider {
    background-color: black;
    width: 100vw;
    height: 8vh;
    overflow: hidden;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
.divider span {
    margin-right: 28px;
}
/* responsive */
@media only screen and (max-width: 768px) {
    
.aboutus-right{
    width: 100%;
}
.aboutus-right img{
    margin-left: 7%;
}
.aboutus-left{
    width: 100%;
}
.aboutus{
    width: 100%;
}
    
nav img {
    width: 100vw;
    margin-left: 0;
}
nav {
    height: auto;
}
.nav-items {
    width: 100vw;
    overflow: scroll;
    justify-content: flex-start;
}
.nav-items a {
    font-size: 3vh;
    padding-left: 6vw;
    padding-right: 6vw;
    float: left;
}
    
.footer-top, .footer-top div {
    width: 100vw;
    height: auto;
    float: none;
    margin-left: 0;
}
.footer-top div {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}
.footer-bottom {
    font-size: 1.5vh;
}
}