@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: #262626;
  color: #fff;
  font-family: "Kalam", cursive;
  font-weight: 400;
  font-style: bold;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333;
  margin-bottom: 20px;
}

.nav img {
  width: 100px;
  background-color: transparent;
}

.nav ul {
  display: flex;
  gap: 10px;
  background-color: transparent;
}

.nav ul li {
  list-style: none;
  background-color: transparent;
  padding: 5px 10px;
}

.nav ul li:hover {
  background-color: #4d4d4d;
  border-radius: 5px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  background-color: transparent;
  font-size: 20px;
}

.stories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.story {
  width: 300px;
  padding: 10px;
  background: #333;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  text-decoration: none;
}

.story:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  background-color: #4d4d4d;
}

.story img {
  width: 100%;
  border-radius: 5px;
}

.story h3 {
  margin: 10px 0;
  background-color: transparent;
}

.story .tags {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  background-color: transparent;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  background-color: transparent;
}

.pagination a {
  padding: 5px 10px;
  background-color: #333;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.pagination a:hover {
  transform: translateY(-5px);
  transition: 0.3s;
  background-color: #4d4d4d;
}

/** Footer kept at bottom */

.footer {
  width: 100%;
  height: 100px;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px 0;
  margin-top: 100px;
}

.footer p {
  margin: 20px 0;
  background-color: transparent;
}

.post {
  padding: 20px;
  width: 80%;
  margin: 20px auto;
  background: #333;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 200px;
}

.post h2 {
  margin: 10px 0;
  background-color: transparent;
}

.post iframe {
  width: 50%;
  height: 50%;
  border: none;
  margin: 20px 0;
  border-radius: 5px;
}

.post p {
  margin: 10px 0;
  background-color: transparent;
  font-size: 20px;
}
