#ServerQuizHistoryNoItems {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 3min;
    margin: 0 0 20px 0;
    color: rgb(0, 0, 0);
    justify-self: center;
}

#ServerQuizHistoryItems {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow-y: scroll;
    border-top-left-radius: 4vh;
    border-bottom-left-radius: 4vh;
    position: relative;
}

#ServerQuizHistoryItemsTitle {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 3vmin;
    margin: 0;
    color: white;
    background: #ffb006;
    width: 100%;
}

.ServerQuizHistoryItem {
    background: #ffb006;
    position: relative;
    width: 90%;
    border-radius: 20px;
    transition: all 0.5s;
}

.ServerQuizHistoryItem:hover {
    background: #ffd987;
}

.ServerQuizHistoryItem:active {
    background: #c08300;
}

.ServerQuizHistoryItem:nth-last-child(1) {
    margin-bottom: 20px;
}

.ServerQuizHistoryItem>h1 {
    text-align: center;
    position: relative;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 4vmin;
    margin: 0;
    color: white;
}

.ServerQuizHistoryItem>p {
    text-align: center;
    position: relative;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2vmin;
    margin: 0;
    color: rgb(255, 221, 191);
}