body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-image: url(./images/bg.JPG);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-position: center;
}

header {
  display: flex;
  justify-content: space-between;
  padding: 30px 5%;
  background-color: #313624;
}

.logo {
  margin: auto 50px auto 0;
  width: auto;
  height: 35px;
}

nav {
  display: inline-block;
  justify-items: end;
  text-decoration: none;
}

nav a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

nav a:hover {
  color: #0a0a0a;
  text-decoration: #0a0a0a;
  transition-duration: 0.5s;
}

hr {
  margin: 120px auto;
  border: dashed #313624 2px;
  width: 10%;
}

footer {
  height: 60px;
  text-align: center;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding-top: 30px;
  background-color: #313624;
}

footer a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  margin: 0 40px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  padding: 20px;
  font-size: 30px;
  text-shadow: 1px 1px 1px  rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
}

footer a:hover {
  color: #0a0a0a;
  text-decoration: #0a0a0a;
  transition-duration: 1s;
}

@media screen and (max-width: 500px) {
  .topnav a {
  display: inline-block;
  float: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
  margin: 0 10px;
  padding: 10px;
  border-radius: 5px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.5);
  }

  .logo {
    width: 100px;
  }

  hr {
    margin: 100px auto;
  }

  footer a {
    font-size: 18px;
    margin: 0 30px;
    padding: 10px;
  }
}