#RoomListNone{
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2rem;
    margin: 0;
    margin-top: 20px;
    color: rgb(0, 0, 0);
}

#RoomListItems {
    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;
}

.RoomListItem{
    position: relative;
    width: 90%;

    border-radius: 20px;
    background: #016FB9;

    transition: all 0.5s;
}

.RoomListItem:nth-of-type(1){
    margin-top: 20px;
}

.RoomListItem:nth-last-child(1){
    margin-bottom: 20px;
}

.RoomListItem:hover{
    background: #32a3ee;
}

.RoomListItem:active{
    background: #05446e;
}

.RoomListItem p{
    text-align: center;
    position: relative;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 4vh;
    margin: 0;
    color: white;
}
