html {
  height: 100vh;
}

footer,
footer div,
footer ul,
footer li,
footer h3,
footer p,
footer a {
  margin: 0 auto;
}

footer {
  margin-top: 100px;
  min-height: 8vh;
  background-color: rgb(235, 235, 235);
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  color: rgb(0, 0, 0, 0.6);
  font-family: Helvetica;
  justify-content: flex-start;
  bottom: 0;
}

footer div {
  display: flex;
  align-items: flex-start;
}

footer li {
  list-style-type: none;
}

footer a {
  text-decoration: none;
  color: rgb(0, 0, 0, 0.6);
}

footer a:hover {
  text-decoration: none;
  color: rgb(0, 0, 0, 0.9);
  font-weight: bold;
}

h3 a {
  color: rgb(0, 0, 0, 0.9);
}

h3 a:hover {
  color: rgb(0, 0, 0, 0.6);
}

footer h3 {
  font-size: 90%;
  text-transform: uppercase;
  font-weight: 1000;
  padding-bottom: 5%;
  padding-top: 4%;
  color: rgb(0, 0, 0, 0.9);
}

footer h2 {
  font-size: 40%;
}

@media screen and (max-width:1024px) {
  footer {
    width: 100vw;
    height: 40vh;
    justify-content: flex-start;
    margin: 0px;
    align-items: flex-start;
  }

  footer div {
    width: 100%;
  }

  footer h3 {
    font-size: 1rem;
    left: 0;
  }

  footer li {
    font-size: 1rem;
  }
}

@media screen and (max-width:1000px) {
  footer {
    width: 100vw;
    height: 90vh;
    flex-direction: column;
    justify-content: flex-start;
    margin: 0px;
    align-items: flex-start;
  }

  footer div {
    width: 190px;
    margin-top:30px;
  }

  footer h3 {
    font-size: 1rem;
    left: 0;
  }

  footer li {
    font-size: 1rem;
  }
}