body
{
    background-color:rgb(252, 233, 1);
    display: flex;
    justify-content: center;    
    font-family: 'Bungee Inline', cursive;
    
}

.element-layout
{
    display: flex;
    width: 100%;
    height:100%;
       
}

#layout-container
{   
   
    width:100%;
    justify-content: center;
    
}

#game-title
{
    
    display: flex;
    font-size:40px;
    width:100%;
    justify-content: center;
    
}

#title
{
    margin-top:20px;
    display:flex;
    width:70%;
    justify-content:center; 
    background-color: white;
    box-shadow:0px 5px 10px black;
    border-radius:25px;
    margin-bottom:25px;
}

#winner-display-container
{
    display: flex;
    justify-content: center;
    text-align:center;
    line-height:45px;
   
}

#winnner-display
{
    display:flex;
    width:50px;
    font-size:12px;
    font-weight:bold;
    text-align:center;
    box-shadow: 0px 0px 12px white;
}
.image-size
{
    width:300;
    height:300;
    margin:30px;
    justify-content: center;
    border-radius:25px;
    box-shadow: 5px 5px 24px yellowgreen;
    

    
}

#img-container
{
    display:flex;
    justify-content:center;
    width:100%;
   
    
}

#rock-button:hover
{
    box-shadow:10px 2px 10px black;
}

#paper-button:hover
{
    box-shadow:10px 2px 10px black;
}

#scissors-button:hover
{
    box-shadow:10px 2px 10px black;
}

#input-container 
{
    display:flex;
    justify-content: center;
    
}

.button
{
    margin-left:80px;
    margin-right:80px;
    display:flex;
    width:200px;
    height:50px;
    display:flex;
    justify-content: center;
    text-align:center;
    background-color:rgb(255, 255, 255);
    border-radius:50px;
    
    
    
    
}

h3
{
    margin-top:25px;
    display:flex;
    justify-content: center;
    font-size: 30px;
    text-align: center;
    line-height:0px;
    border-style:bold;
}

#score-display-container
{
    display:flex;
    justify-content:flex-start;
    width:100%;
    margin-right: 50px;
    margin-top:20px;
    
    
    
}

#score-container
{
    
    background-color:rgb(255, 255, 255);
    
    box-shadow: 0px 5px 5px black;
    margin-left:20px;
    width:30%;
    border-radius:25px;
    
    
}

.score-formatting
{
    margin-left:20px;
    font-family: 'Bungee Inline', cursive;
}

#hands-selected-display
{
    display:flex;
    margin-left:50px;
    display:flex;
    background-color:white;
    width:30%;
    box-shadow: 0px 0px 12px black;
    justify-content: space-around;
    align-items: center;
    border-radius:25px;
    

}

.hand-chosen-container
{
    width:200px;
    height:200px;
    background-color:yellow;
    border-radius:25px;
    


}

.hand-chosen-image-container
{
    
    display:flex;
    justify-content: center;
    align-items:center;
    width:100%;
    height:70%;
}


.hand-chosen-image
{
    display:flex;
    margin-top:20px;
    justify-content: center;
    width:130px;
    height:130px;
    box-shadow: 0px 0px 5px black;
    border-radius:25px;

}

h4
{
    margin-left:10px;
    height:10%;
    width:90%;
    background-color:white;
    display:flex;
    justify-content: center;
    border-radius:25px;
    box-shadow: 0px 0px 12px #fff;

}
