*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.main__container {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.select-users {
  width: 100%;
  height: 100%;
}

.select__user {
  width: 250px;
  height: 30px;
  border-radius: 5px;
  border: none;
  margin: 30px 0 10px 0;
  justify-self: flex-start;
}

.card__container {
  width: 250px;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 5px;
  box-shadow: 0 3px 6px #00000029, 0 2px 1px #0000003b;
}

.card__image {
  width: 100%;
}

.card__username {
  padding: 10px 20px 0;
  font-size: 14px;
  text-align: left;
  color: grey;
}

.card__name {
  padding: 5px 20px 5px;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  color: #5970d8;
}

.card__location {
  padding: 0px 20px 15px;
  font-size: 12px;
  text-align: left;
  color: #808080;
}

.stats__container {
  border-radius: 0 0 5px 5px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  background-image: linear-gradient(
    to bottom,
    #40569e,
    #4650ac,
    #4c60bb,
    #536fc9,
    #5970d8
  );
}

.number {
  margin: 10px 0 0 0;
  font-size: 40px;
  font-weight: 700;
}

.name {
  margin: 10px 0;
  font-size: 12px;
}

.date__data {
  width: 250px;
  padding: 10px 0;
  font-size: 12px;
  text-align: right;
  color: #808080;
}
