.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0000009e;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
}
.feutures {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-top: 100px;
}
.feutures .text-box {
    text-align: center;
}

.feutures h4 {
    text-decoration: underline;
    text-align: center;
    margin: 0;
}

.feutures p {
    margin: 5px 0 0 0;
}
.center-buttons {
  display: flex;
  gap: 20px;
  margin: auto;
}

.right-account {
  position: absolute;
  right: 20px;
}

button {
  padding: 10px 18px;
  font-size: 14px;
  background-color: #4285F4;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #3367d6;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: #4285F4;
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 6px;
  overflow: hidden;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

body {
    background-color: #000000a3;
}
