body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
}

header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #000000;
  padding: 20px 40px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.logo img {
  max-height: 70px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
}

section {
  padding: 100px 20px;
}

footer {
  padding: 20px;
  background-color: #000000;
  color: #ffffff;
}

.landing {
  background-image: url("assets/bg-new.webp");
  background-size: cover;
  background-position: center;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-logo {
  max-width: 50%;
  min-width: 40%;
}

footer {
  padding: 10px;
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  position: relative;
  bottom: 0;
  left: 0;
  max-width: 100%;
}

.footer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

#plugin-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(38, 38, 38, 1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  width: 300px;
  height: 350px;
  margin-bottom: 40px;
}

.block a {
  color: #ffffff;
  text-decoration: none;
}

.block h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.block-description {
  font-size: 16px;
  color: #ffffff;
}

.block-image {
  width: 100%;
  height: 60%;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 10px;
}


.block-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.block-description {
  font-size: 16px;
  color: #ffffff;
}

.download-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: rgb(200, 99, 160);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}