.body {
  background-color: rgb(19, 18, 18);
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
}
.multiple {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.maincontainer {
  width: 20%; /* Adjust the width of the container as needed */
  max-width: 600px; /* Maximum width to maintain readability */
  margin: 0 auto; /* Center the container horizontally */
  padding: 20px; /* Optional padding */
  /* border: 1px solid #ccc; Optional border for visualization */
  background-color: rgb(39, 36, 36);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: auto;
}
.maincontainer img {
  border-radius: 50%;
  size: 10px;
  max-width: 20%;
  height: 100%;
}

.details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.name {
  color: whitesmoke;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}
.location {
  color: rgb(160, 201, 119);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 10px;
  font-weight: 500;
  margin-top: -18px;
}

.myrole {
  color: rgb(152, 156, 156);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}

button {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 500;
  color: white;
  background-color: rgb(60, 58, 58);
  border-radius: 5px;
  width: 100%;
  height: auto;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
