
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}
nav {
  background-color: black;
  width: 100%;
  height: 70px;  
  position: fixed;
  top: 0px
}
@media (max-width: 720px) {
  nav {
    height: 150px;
  }
}
nav li {
  border: 1px solid white;
  display: inline-block;
  margin: 0 2vw;
}
nav li a.active {
  border: 1px solid white;
  color: white;
  font-size: 20px;
  font-weight: lighter;
  line-height: 70px;
}
nav li a.active-img {
  border: 1px solid white;
  color: white;
  font-size: 20px;
  font-weight: lighter;
  line-height: 70px;
}
nav li a.current {
  border: 0px solid white;
  color: white;
  font-size: 25px;
  font-weight: lighter;
  line-height: 70px;
}

nav li a.active:hover {
  text-decoration: underline rgb(204, 54, 17) 2px;
  color:white;
}
nav li a.current:hover {
  text-decoration: underline rgb(204, 54, 17) 2px;
  color:white;
}

main {
  font-size: 50px;
  color: white;
  background-color: rgb(0, 0, 0);
  height: 100%;
}
main img.main-image {
  padding-top: 100px;
  padding-left: 200px;
}
@media (max-width: 1720px) {
  main img.main-image {
    padding-top: 150px;
  }
}
main p {
  padding-left: 200px;
  padding-right: 200px;
  font-size: 20px;
  
  color: white;
}
footer {
  background-color: black;
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: 0px;
}
