body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #b3b3b3;
}

.header {
  padding: 60px;
  text-align: center;
  color: Black;
  font-size: 20px;
}

.dropdown {
  position: absolute;
  top: 10px;
  left: 10px;
}

.dropdown button {
  background-color: #424242;
  color: white;
  padding: 10px 19px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.dropdown button:hover {
  background-color: #4242a1;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  z-index: 1000;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

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

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

.links-container {
  margin: 20px;
}

.link {
  display: flex;
  align-items: center;
  background-color: #424242;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-bottom: 5px;
  text-align: left;
  width: 100%;
}

.link img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.link:hover {
  background-color: #4242a1;
}

.footer {
  text-align: center;
  color: grey;
  font-size: 11px;
}

a:visited {
  color: grey;
}

a:link {
  color: grey;
}
