/* Phone screen */
@media only screen and (max-width: 1320px) {
    #howToPlayContainer {
        display: none;
    }

    #createRoomButton {
        width: 300px;
        height: 60px;
    }
}

/* 2K screen */
@media only screen and (min-width: 1500px) {
    #chatbox {
        height: 540px;
        width: 320px;
    }
    
    #chat-input {
        width: 309px;
    }
    
    #chat-text {
       width: 320px;
    }
    
    #messageContainer {
        width: 320px;
        height: 493px;
    }
    
    .choiceButton {
        margin-left: 27px;
    }
    
    #selectedChampCard {
        width: 200px;
        height: 264px;
    }
    
    #selectedChampImg {
        width: 180px;
    }
    
    #selectedBackChampImg {
        width: 180px;
        height: 230px;
    }
    
    #selectedCardTitle {
        font-size: initial;
    }
    
    .selectedSpec {
        font-size: x-small;
        margin: 20px;
        margin-left: 40px;
    }
    
    .specTitle {
        margin-left: 80px;
    }
}