html, body{
    background-color: black;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
}
/* 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;
}
/* 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;
}
form{
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  background-color: black;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 20px;
}
input[type="text"], input[type="tel"],input[type="number"], input[type="mail"], input[type="password"]{
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.label{
  display: block;
  font-weight: bolder;
  font-size: 24px;
}
input[type="submit"] {
  display: block;
  width: 105%;
  padding: 10px;
  background-color: gray;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  float: center;
}
input[type="submit"]:hover {
  background-color: #5A5A5A;
}
@media only screen and (max-width: 768px) {
    input[type="submit"]{
        width: 91%;
        margin-left:15px;
    }
    input[type="text"], input[type="tel"],input[type="number"], input[type="mail"], input[type="password"]{
        width: 85%;
    }
    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;
}
}