@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');

*
{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body
{
    background-color: #e8e8e8;
    font-family: 'Lucida Sans Regular', sans-serif;
}
.font1 {
    font-family: "Jacquard 24", system-ui;
    font-weight: 400;
    font-style: normal;
  }
.container
{
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;
    background-color: #272727;
    color: #f5f5f5;
}
.gameBox
{
    width: 40%;
    height: 90%;
    box-shadow: 1px 2px 10px #35D1F0;
    text-align: center;
    padding: 20px;
}
.userName
{
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.userName h2
{
    margin: 10px;
}
.userName input[type=text]
{
    padding: 10px;
    outline: none;
    border: none;
    background-color: #444444;
    z-index: 2;
    color: #e8e8e8;
    margin: 10px;
    box-shadow: 1px 2px 10px #f5f5f5;
}
.userName label
{
    background:transparent;
    color: #35D1F0;
    outline: none;
    border: none;
    cursor: pointer;
    margin: 10px;
    font-size: 20px;
}
/* #test:hover #test2
{
    padding-left: 10px;
    transition: 0.5s ease-in-out;
} */

.gameLayout
{
    display: none;
    height: 100%;
}
.gameControlsDiv
{
    display: flex;
    justify-content: space-between;
}
.gameControls
{
    display: flex;
    justify-content: flex-end;
    /* margin-bottom: 20px; */
}
.gameControls h4
{
    margin: 0px 10px;
}
#currentUser
{
    color: yellow;
}
#gameReload
{
    cursor: pointer;
    margin: 0px 10px;
}
#gameLogout
{
    color: red;
    cursor: pointer;
    margin: 0px 10px;
}
.gameScore
{
    display: flex;
    justify-content: space-around;
    /* margin: 50px 0px; */
}
.options
{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}
.options div
{
    width: 100%;
    margin: 0px 2px;
}
.options img
{
    width: 100%;
    height: 120px;
    border: 2px solid #35D1F0;
    cursor: pointer;
}
.options img:hover
{
    box-shadow: 1px 2px 10px red;
    transition: 0.3s ease-in-out;
    transform: scale(1.02);
}
.optionChoose
{
    display: flex;
    justify-content: space-around;
    /* margin-top: 40px; */
}
.gameResult
{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* margin-top: 60px; */
}

@media only screen and (max-width:750px)
{
    .gameBox
    {
        width: 95%;
        height: 90%;
    }
    .options img
    {
        margin: 0px 3px;
    }
}