#app {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#others {
    width: 550px;
    margin-bottom: 30px;
}

@media (max-width: 550px) {
    #others {
        width: 80%;
    }
}

#others img {
    border-radius: 50%;
}

.other-score {
    background-color: white;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 999px;
    margin-left: auto;
    position: relative;
}

.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.podium img {
    border-radius: 50%;
}

.card {
    width: 120px;
    height: 220px;
    border-radius: 50% / 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    filter: drop-shadow(0 7px 5px rgba(0, 0, 0, 0.3));
}

.card.first {
    filter: drop-shadow(0 13px 5px rgba(0, 0, 0, 0.2));
}

.circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    margin-top: 20px;
    border: 6px solid #ccc;
}

.name {
    margin-top: 10px;
    font-weight: bold;
    color: #111111;
    text-align: center;
    font-size: 14px;
    filter: drop-shadow(0 7px 5px rgba(0, 0, 0, 0));
}

.score {
    margin-bottom: 10px;
    color: #111111;
    font-size: 14px;
}

.user-card {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 10px;
    margin-top: 20px;
    background-color: #cccccc;
    padding: 15px;
    border-radius: 999px;
}

.user-card img {
    width: 30px;
    height: 30px;
}

.rank {
    background-color: #e3e3e3;
    color: black;
    font-weight: bold;
    font-size: 18px;
    height: 25px;
    width: 25px;
    justify-content: center;
    border-radius: 50%;
    align-items: center;
    z-index: 99;
}

.rank-text {
    font-weight: 400;
    color: black;
    text-align: center;
}

.first .circle {
    border-color: gold;
    transform: scale(1.5);
}

.first .name {
    color: black;
}

.first .crown {
    top: 0;
    font-size: 24px;
}

.second .circle {
    margin-top: 50px;
    border-color: silver;
}

.third .circle {
    margin-top: 50px;
    border-color: #cd7f32;
}
