* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 8vh;
    background-color: black;
    padding: 0 2rem;
}

img {
    height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
    font-size: 14px;
}

.site-footer {
  background-color: #3a3a3a;
  color: #ffffff;
  text-align: center;
  padding: 30px 15px;
  margin-top: 578px; 
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}