#openRanking {
    background-color: var(--primary-color);
    border-bottom-left-radius: 99999px;
    color: white;
    padding: 1.5rem 1.5rem 3rem 3rem;
    font-size: 3rem;
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 1s;
}


#goMainPage, #goPrevPage {
    /*background-color: var(--primary-color);*/
    border-radius: 5px;
    /*color: white;*/
    margin: 1.5rem;

    position: fixed;
    top: 0;
    left: 0;
    cursor: pointer;
    transition: all 1s;
}


#goLivePage {
    /*background-color: var(--primary-color);*/
    border-radius: 5px;
    /*color: white;*/
    margin: 1.5rem;

    position: fixed;
    top: 3rem;
    left: 0;
    cursor: pointer;
    transition: all 1s;
}



#openRanking:hover {
    /*background-color: var(--primary-color);*/
    padding: 2.5rem 2.5rem 5rem 5rem;
    font-size: 4rem;

}


#rankingTable {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
}

#rankingTable tr {
    border-bottom: 1px solid grey;
    height: 2.5rem;
}


.rankingText {
    font-size: 1.3rem;
    text-align: center;
    margin: 0 auto;
}


.rankingNo {
    width: 12%;
}

.rankingNickname {
    width: 48%;
}

.rankingScore {
    width: 40%;
}

#rankingMyTable {
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
}


#rankingMyTable tr {

    border-bottom: 1px solid grey;
    border-top: 1px solid grey;
    height: 2.5rem;
}


.rankingBottomText {
    font-size: 1rem;
    margin: 0 auto;
    text-align: center;

}


@media screen and (max-width: 768px) {
    #rankingMyTable, #rankingTable {
        font-size: 1.5rem;
    }

    .rankingText {
        font-size: 1.8rem;
    }

    .rankingBottomText {
        font-size: 1.5rem;
    }
}

