body{
    margin:0;
    background-color: rgb(111,90,205);
    font-family: sans-serif;
    letter-spacing: 1px;
}
.homepage,.gamepage{
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    
}
.modal{
    border: 2px solid white;
    top: 100px;
    position: absolute;
    background: blueviolet;
    color: white;
    left: 402px;
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    border-radius: 15px;
    display: none;
}
#image{
    height:250px;
    margin:20px 0;
}
.winner{
    font-size: xxx-large;
    font-weight: 900;
}
#logo{
    height:400px;
}
.logo{
    text-align: center;
    width: 800px;
    background-color:#8C52FF ;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow:10px 10px 10px rgba(0, 0, 0, 0.563);
}
Button{
    margin: 10px 0;
    padding: 15px;
    width:135px;
    background-color: #3F329E;
    color: white;
    font-size: larger;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: all 500ms ease-in-out;
    box-shadow:10px 10px 30px rgba(0, 0, 0, 0.436);
}
button:hover{
    transform: translate(0,-2px);
    /* transform: scale(1.1); */
    box-shadow:10px 10px 10px rgba(0, 0, 0, 0.563);
}
.gamepage,.navbar{
    
    text-align: center;
    display: none;
    justify-content: center;
}
.chatroom{
    background: #8C52FF;
padding: 10px;
border-radius: 10px;
margin: 50px;
    box-shadow:10px 10px 10px rgba(0, 0, 0, 0.563);

}
.chats{
    background: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    overflow: auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    height: 300px;
width:400px;
}
.message{
    
    color: white;
    padding: 5px;
    border-radius: 5px;
    margin: 5px 0 5px 0;
}
.L{
    background: rgb(111,90,205);
}
.R{
    background-color: cornflowerblue;
}
.scoresection{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items:center;
}
.row{
    font-size: larger;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.row div{
    margin: 10px 25px;
}
.navbar{
    text-align: center;
    color: white;
    padding: 10px;
    background-color: #3F329E;
}
video{
    box-shadow:10px 10px 10px rgba(0, 0, 0, 0.563);

    height: 200px;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    cursor: pointer;
    transition: all 500ms ease;
}
video:hover{
    transform: scale(1.1);
}

.options{
    flex-wrap: wrap;
    justify-content: center;
}
@media (max-width:950px) {
    #logo,.logo{
        width:400px;
    }
    .modal{
        top:10px;
        left:50px;
    }
}
@media (max-width:600px) {
    #logo,.logo{
        width:200px;
        height: 200px;
    }
    .chats{
        width:300px;
    }
    .modal{
        top:10px;
        left:10px;
        width:300px;
    }
}
#message{
    margin: 10px;
    padding: 9px;
    border-radius: 13px;
    outline: none;
    border: none;
    font-size: larger;
}