* {
  padding: 0;
  margin: 0;
}

main {
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 2%,
    rgba(0, 9, 111, 1) 100%,
    rgba(0, 14, 73, 1) 100%
  );
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column nowrap;
}

main h2 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: white;
  font-size: 45px;
  position: relative;
  bottom: 15%;
}

.container-users {
  display: flex;
  gap: 50px;
}

.icons {
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 2%,
    rgba(0, 9, 111, 1) 100%,
    rgba(0, 14, 73, 1) 100%
  );
  border-radius: 50%;
  border: 3px solid rgba(0, 14, 73, 1);
}

.icons:hover {
  border: 3px solid white;
}

.icons img {
  max-width: 100%;
  width: 180px;
  height: auto;
}

.user p {
  color: rgb(145, 145, 145);
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-style: normal;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.btn-editar {
  position: relative;
  top: 110px;
  background-color: rgb(56, 59, 93);
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: white;
  padding: 14px 80px;
  border-radius: 8px;
  text-decoration: none;
}

.btn-editar:hover {
  background-color: rgb(74, 77, 112);
}
