/* General styles */
.mycounter {
  float: right;
}

.dropdown {
  display: inline-block;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Navbar styles */
.navbar {
  background: linear-gradient(to bottom, #eeeeee, #cccccc);
}

.navbar .nav-link {
  color: #343a40;
}

.navbar .nav-link.active,
.navbar .nav-link:hover {
  color: #000;
}

/* Header styles */
header {
  text-align: center;
}

.header-content {
  background: linear-gradient(to bottom, #ffffff, #f5f5f5);
  padding: 50px 0;
}

.social-icons a {
  color: #000;
  vertical-align: middle;
  display: inline-block;
}

.social-icons a:hover {
  color: #555;
}

/* Section styles */
section {
  position: relative;
  padding: 50px 0;
  transition: background-color 0.3s;
}

ul {
  list-style-type: "- ";
}

.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top: 2px solid #ddd;
  width: 80px;
}

.section-divider:hover {
  opacity: 0.7;
}
.download-button {
  display: inline-block;
  padding: 10px 20px;
  cursor: pointer;
  vertical-align: middle;
}

/* Footer styles */
footer {
  background-color: #eeeeee;
}
