* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

body {
  font-family: "Arial", sans-serif;
  background-image: linear-gradient(to right, #ff5fdf, #3a4fab);
  background-size: cover;
  background-position: center;
}

nav {
  color: blue;
}

.navbar {
  background-image: url("");
  padding: 1.5rem;
  text-decoration: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.navbar:hover,
.navbar-container:hover,
.navbar-logo:hover,
.navbar-links li a:hover {
  color: rgb(64, 211, 204);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-links {
  display: flex;
  gap: 2rem;
}

.navbar-links li {
  position: relative;
}
.navbar-links a {
  text-decoration: none;
}

.navbar-logo {
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.dropdown a {
  text-decoration: none;
}

.category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: transparent;
  list-style: none;
  padding: 0.5rem 1;
  min-width: 150px;
  border-radius: 4px;
}

.category-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  color: whitesmoke;
}

.category-dropdown li a:hover {
  background-color: grey;
  border-radius: 5px;
}

.dropdown:hover .category-dropdown {
  display: block;
}

.posts{
  position: relative;
}

.post{
  padding: 10px 10px 10px 10px;
  margin: 50px;
  position: relative;
  left: 10px;
  right: 10 px;
  background-color: aliceblue;
  right: 20px;
  text-align: center;
}