html {
    background: linear-gradient(150deg, rgba(0, 6, 10, 0.9), rgba(0, 5, 6, 0.9));
    background-size: cover;
    height: 100%;
    width: 100%;
    font-family: "Roboto Mono", monospace;
    color: white;
    font-size: 12px;
  }

  a {
      color: rgb(215, 215, 255);
  }

#picksContainer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
}
.picker {
    margin: 8px;
    margin-bottom: 30px;
}

.picker-name-container {
    text-align: center;
    font-weight: bold;
}

.picker-selection {
    text-align: center;
    padding: 3px;
}

.eliminated .picker-name {
    color: #e65069;
    text-decoration: line-through;
}

.incorrect-pick {
    color: #e65069;
    text-decoration: line-through;
}

.tooltip {
    position: relative;
    cursor: pointer;
}

.reason-tooltip {
    padding: 0 4px;
    line-height: 11px;
    font-size: 11px;
    border-radius: 50px;
    border: 1px solid rgb(215, 215, 255);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.tooltip-text {
    z-index: 99;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transform: translate(-10%, 5px);
    min-width: 75px;
    padding: 7px;
    background-color: rgb(0, 5, 6);
    border: 1px solid rgb(215, 215, 255);
    border-radius: 5px;
    font-size: 12px;
    font-weight: normal;
    color: white;
    transition: opacity 0.2s;
}

.tooltip:hover {
    color: rgb(215, 215, 255);
}

.tooltip:hover + .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.winner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgb(0, 5, 12);
    border-radius: 4px;
    padding: 10px;
    font-size: 20px;
}