body{background-color:#d9b382; align-items: center;  display: flex;
    flex-direction: column;}
#user-choice{
    background-color: white;
    height: 100px;
    width: 20vh;
    border-radius: 5%;
    border: 2px solid black;
    color: black;
    padding: 5px 10px;
    text-align: center;
    display: inline-block;
    font-size: 16px;
    margin: 50px;
    cursor: pointer;
    text-wrap: wrap;
}
@media screen and (max-width: 700px) {
    button {
        font-size: 25px;
        height: 80px;
    }  
}
@media screen and (max-width: 800px) {
    button {
        font-size: 25px;
        height: 80px;
    }  
}

#user-choice:hover{
    background-color:#d9b382;
    scale: 1.5;
    color: black;
    font-weight: bold;
    font-size: large;
}
#replace0{
    display: flex;
    flex-direction: row;
}
.circle {height: 30px; width: 30px; background-color: #d9b382; border: #d9b382 solid 1px; outline: none; border-radius: 50%; cursor: -webkit-grab; cursor: grab; margin-top: 5px;}
.circleInstructions {height: 24px; width: 24px; outline: none; border-radius: 50%;}
.levelbutton {background-color: white; height: 20px; width: 20px; outline: none; border-radius: 50%;}
#levelpanel {opacity: 0; transition: opacity 3s ease;}
#levelpanel:hover {opacity: 1;}

#chessboard {
                width: 84px;
                height: 84px;
                margin: 20px;
                border: 4px solid #333;
            }
            
#picboard {
                width: 84px;
                height: 84px;
                border: 4px solid #333;
            }
            
.beige		{
                float: left;
                width: 40px;
                height: 40px;
                background-color: #d9b382;
                text-align:center;
                display: table-cell;
                vertical-align:middle;
                border: 1px black solid;
            }	
            	
#bar{
    bottom: 0% ;
    position: fixed;
    background-color: rgb(87, 87, 87);
    opacity: 0.5;
    color: white;
    width: 100%;
    height: 15%;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    text-align: left;
}

#bar:hover{
    opacity: 1;
}

#bar img{
    margin-top:20px;
    margin-bottom: 2%;
    margin-left: 1%;
    
    width:10vh;
    height: 10vh;
}

#bar img:hover{
   transform: scale(1.1);
   transition: transform 0.3s ease-in-out;
}

#bar label{
    top: 0px;
    position: absolute;
}

.level-button {
    border-radius: 2em;
    width: 120px;
    height: 40px;
    background-color: #0219ac;
    color: white;
    border: none;
    cursor: pointer;
    margin: 5px;
    font-size: 14px;
}

.level-button:hover {
    background-color: #0e8bff;
    color: black;
}