
@media screen and (max-width: 576px) {
   
    .options{
        min-height: 100px !important;
        max-height: 100px !important;
    }

    .selectedImage{
        min-height: 100px !important;
        max-height: 100px !important;
    }
  }

*{
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body {
    background: url('../images/waves-big.jpg') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

header{  
    height: 100px;
    color: white;
    border-bottom: 1px solid white;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .5);
}

.container-fluid{
    height: calc(100% - 100px); 
    overflow: auto;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .5);
    padding-top: 20px;
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.startScreensWrapper{
    height: calc(100% - 100px);
    overflow: auto;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .5);
    color: white;
}

.mainScreen{
    height: 100%;
}

.bootRow{
    margin: 0px !important;
}

.rowDirection{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.columnDirection{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#optionsDiv{
    color: #0000ff;
}

.inputText{
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    padding: .375rem .75rem;
    margin: 20px 0px;
}

.userAvailableName{
    padding: 10px 20px;
    background: rgb(230, 238, 255);
    background: rgba(230, 238, 255, .5);
    color: #0000ff;
    border-radius: 20px;
    font-weight: bolder;
    min-width: 100px;
    max-width: 100px;
    text-align: center
}

.options{
    max-height: 100px;
    min-height: 100px;
    cursor: pointer;
}

#gameResults{
    color: #66ff33;
    font-weight: bolder;
}

#gameResult{
    color: #0000ff;
    font-weight: bolder;
}

.selectedImage{
    min-height: 100px;
    max-height: 100px;
}

.hostMessage, .oponentMessage{
    margin: 0px;
    font-weight: bolder;
}

.hostMessage{
    color: #0000ff;
}

.oponentMessage{
    color: #66ff33;
}

.section{
    margin-bottom: 20px;
    border: 3px solid #ff33cc;
    border-radius: 20px;
    padding: 15px 0;
    background: rgb(230, 238, 255);
    background: rgba(230, 238, 255, .5);
}

#chat{
    border-radius: 15px;
    padding-left: 20px;
    margin-right: 10px;
    height: 192px;
    overflow-y: auto; 
}

::-webkit-scrollbar{
    height: 4px;
    width: 12px;
    background: #66ff33;
}

::-webkit-scrollbar-thumb:vertical{
    background: #0000ff;
    border-radius: 10px;
}


#messageArea{
    justify-content: center;
}

#messageInput{
    border-radius: 15px;
}

#sendMessageButton{
    border-radius: 15px;
}

