.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  width: 130px;
  background-color: black;
  color: #fff;
  border: 3px double #ffffff;
  text-align: center;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  transition: visibility 0.5s ease;
}

.trick {
  color: black;
  text-shadow: 0 0 10px black;
}

body {
  background: black;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px;
  color: white;
}

.profile-card {
  border-collapse: collapse;
  width: 360px;
  background: black;
}

.profile-card th,
.profile-card td {
  border: 3px double #ffffff;;
  padding: 10px;
}

.profile-card th {
  width: 40%;
  text-align: left;
  font-weight: normal;
}

.profile-card td {
  width: 60%;
}

.header td {
  text-align: center;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 12px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  margin: 0 10px;
}

.image-row td {
  padding: 0;
  text-align: center;
}

.image-row img {
  width: 100%;
  display: block;
  filter: contrast(200%) grayscale(10%);
}

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: black; 
  border: 3px double white;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: white;
  border: 3px double black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
  border: 3px double #006bff;
}