:root {
    --fade-gradient: linear-gradient(to top, #000000, rgba(255, 255, 255, 0.2));
    --button-gradient: linear-gradient(to bottom right, #FFA500, #FFFF00);
    --button-gradient-hover: linear-gradient(to bottom right, #ffb732, #ffff32);
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
    text-align: center;
}
.column-container {
    display: flex;
    flex-direction: row;
}
.info-column {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.profile-title {
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 2vh;
    font-weight: bolder;
    align-self: flex-start;
    padding: 5px;
    text-shadow: 2px 2px 8px rgba(255, 255, 255, 0.7); /* Horizontal offset, vertical offset, blur radius, shadow color */

}

.profile-label {
    display: flex;
    font-size: small;
    align-self: flex-end;
    padding: 0.2vh;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1); /* Horizontal offset, vertical offset, blur radius, shadow color */

}

.profile-value {
    font-size: 1.5vh;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 1); /* Horizontal offset, vertical offset, blur radius, shadow color */
}

#notUserError {
    position: static;
}

@media (min-width: 900px) {
    .jackpot {
        font-size: 36pt;
    }
}

@media (max-width: 400px) {
    .app-value:nth-child(4),
    .app-value:nth-child(3) {
        display: none;
    }
}