/* General changes */
/* Coloring Footer */
footer {
  background-color: black;
  color: white;
}

/* Navbar 1 */
/* Coloring nav-links */
.navbar {
  background-color: black;
}
#nav a {
  color: white;
  text-decoration: none;
}
/* Coloring and sizing logo */
.logo {
  color: rgb(152, 152, 152);
  font-size: 1.2rem;
  padding-top: 0.2rem;
}
/* Placing navLinks */
.navLinks {
  display: flex;
  list-style: none;
  margin: 0.5rem;
}
/* Placing list-items (links) */
#ulLink {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding-top: 0.5rem;
}
/* The bell */
#alert {
  margin: 0.8rem;
  color: white;
}

/* Hero */
/* The hero-picture */
#heroImage {
  position: relative;
  text-align: center;
  height: 100px;
  background-image: url('../images/hero.png');
  background-repeat: repeat-x;
}
/* The writing over the hero-picture */
#heroP {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -10%);
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  padding: 0.5rem 0;
  color: white;
  font-weight: bold;
}

/* Main */
/* The sorting-buttons */
.sortButton {
  margin-left: 1rem;
  margin-top: 1rem;
  background-color: black;
  color: white;
  border: white solid 1px;
  border-radius: 5px;
  width: 10rem;
  height: 3rem;
  font-size: 1.2rem;
  font-weight: 400;
}
/* The priority-buttons */
.priorityButton {
  margin-left: 1rem;
}
/* The cards */
.card {
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
/* Design of footer */
.footer {
  padding: 0.5rem;
  font-size: 1.2rem;
}
/* The social-icons */
.social {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.social a {
  margin-left: 0.2rem;
  margin-right: 0.2rem;
  color: white;
}
/* The copyright line */
.footer p {
  margin-top: 0.5rem;
  font-size: 1rem;
}
/* The subscribe line */
#footerForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  font-size: 1rem;
}
/* The input-line */
#newsletter {
  margin-left: 0.5rem;
  width: 45%;
}
/* The button */
#subscribe {
  background-color: black;
  color: white;
  border: white solid 1px;
  border-radius: 3px;
  margin-left: 0.5rem;
  padding: 1px 3px;
}

/* so menue doesn't need flexwrap */

@media (max-width: 460px) {
  .logo {
    font-size: 0.8rem;
  }
  .navLinks {
    font-size: 0.6rem;
  }
}
