section {
    display: none;
}

section.active {
    display: block;
    min-height: 600px;
}

section .title {
    display: flex;
    align-items: center;
    font-size: 25px;
}

section .title h2 {
    flex: 1;
    font-size: 25px;
}

section .title i {
    color: var(--secondary-font-clr);
    pointer-events: none;
}

section .title i.active {
    color: var(--primmary-font-clr);
    cursor: pointer;
    pointer-events: all;
}

section button {
    margin-top: 12.5px;
}

.entry {
    display: flex;
    text-align: left;
    gap: 25px;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 12.5px;
}

.entry img {
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.entry i {
    font-size: 25px;
}

.entry .position {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-bg);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    font-size: 14px;
    font-weight: bold;
}

.entry .position.pos-1 {
    background-color: #ceb04e;
}

.entry .position.pos-2 {
    background-color: #c0c0c0;
}

.entry .position.pos-3 {
    background-color: #aa8e5e;
}

.entry .meta {
    flex: 1;
    max-width: 400px;
    width: 5px;
}

.entry span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    transition: .3s;
}

.entry .username:hover {
    color: var(--secondary-font-clr);
}

.entry .value {
    margin: 6.25px 0px 0px 0px;
    color: var(--secondary-font-clr);
    font-size: 14px;
}

@media (min-width: 640px) {
    section .title h2 {
        font-size: 40px
    }
}