* {
  font-family: 'Poppins';
}

/* Navigation Bar */
.navigation-link {
  color: #ffffff;
}

.navigation-link:hover {
  color: #f1c40f;
  text-decoration: none;
}

nav ul li a {
  transition: color 0.3s ease-in-out;
}

nav a:hover {
  font-weight: bold;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: #ffffff;
}

.logo:hover {
  transition: color 0.3s ease-in-out;
  color: #f1c40f;
  text-decoration: none;
}

p {
  font-size: 18px;
}

/* About */
.about {
  font-size: 17px;
}

/* Footer */
footer {
  background-color: #1d4ed8;
}

footer ul li a {
  transition: color 0.3s ease-in-out;
}

footer ul li a:hover {
  color: #f1c40f;
}

