
body {
  display:flex; 
  flex-direction:column;
  margin: 0;
  padding: 0;
  background-color: #c5c5d3;
  color: #0f0f14;
  min-height: 100vh
}

.img-responsive {
  max-height: 800px;
  max-width: 100%;
  box-shadow: 0 0 10px 5px rgba(0,0,0,0.3);
}

.navbar {
  background-color: #0f0f14;
  padding: 0rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo__link{
 display: none;
}

.navbar__links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.navbar a, .footer__link {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: white;
}

.navbar a {
  font-weight: 600;
  padding: 1rem 0;
}

.page-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 0 2rem;
  flex:1
}


.page-content h2 {
  color: #292936;
}

.footer {
  height: 2.5rem;
  width: 100%;
  background-color: #292936;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 0.67em;
}

.footer__link {
  color: white;
  padding: 0 2rem;
}

@media (min-width: 480px) {
  .logo__link {
    display: inline;
  }
  .navbar {
    flex-direction: row;
    justify-content: space-between;

  }

  .navbar__links {
    flex-direction: row;
    justify-content: flex-end;
    gap: 1rem; 
  }

}