a {
  color: #8ff;
}

#menu {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
}

.element {
  width: 165px;
  height: 165px;

  box-shadow: 0px 0px 12px rgba(0,255,255,0.5);
  border: 1px solid rgba(127,255,255,0.25);

  font-family: Helvetica, sans-serif;
  text-align: center;
  cursor: default;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 10px;
}


.element:hover {
  box-shadow: 0px 0px 12px rgba(0,255,255,0.75);
  border: 1px solid rgba(127,255,255,0.75);
}

  .element .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: rgba(127,255,255,0.75);
  }

.element .symbol {
  font-size: 14px;
  font-weight: bold;
  color: rgba(255,255,255,0.9);

  margin-top: 6px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}


.element .details {
  font-size: 11px;
  color: rgba(200,255,255,0.85);
  margin-top: 6px;
  line-height: 1.4;
}


button {
  color: rgba(127,255,255,0.75);
  background: transparent;
  outline: 1px solid rgba(127,255,255,0.75);
  border: 0px;
  padding: 5px 10px;
  cursor: pointer;
}

button:hover {
  background-color: rgba(0,255,255,0.5);
}

button:active {
  color: #000000;
  background-color: rgba(0,255,255,0.75);
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;

  border: 2px solid rgba(0,255,255,0.6);
  box-shadow: 0 0 10px rgba(0,255,255,0.6);

  margin-top: 4px;
}

.element:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0,255,255,0.9);
  border-color: rgba(0,255,255,0.9);
}

