body 
{
    font-family: Arial, sans-serif; 
    /*display: flex;*/
    justify-content: center;
    /*align-items: center;*/
    /*padding-bottom: 50px;*/
    height: 100vh;
    margin: 0;
    background: linear-gradient(135deg, #454849 0%, #2f2d2d 100%);
}

h1 
{
    color: white;
    text-align: center;
    width: 100vw;

}

.button a
{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.button 
{
    background: #4CAF50;
    color: white;
    font-size: 1.2rem;
    border: none;
    border-radius: 8px;
    padding: 15px;
    cursor: pointer;
    transition: background 0.5s;
    margin:1.5vh;
    font-weight: bold;
}

.button:hover 
{
    background: #45a049;
}

.button.play
{
    background: #ab4a4a;
}

.button.play:hover
{
    background: #974040;
}

.button.cook
{
    background: #c17e54;
}

.button.cook:hover
{
    background: #98613e;
}

.button.broth
{
    background: #8354c1;
}

.button.broth:hover
{
    background: #7144ab;
}

.button.topping
{
    background: #5464c1;
}

.button.topping:hover
{
    background: #3f4d9c;
}

#screen 
{
    height: 80vh;
    width: 100vw;
    background-color: #2f2d2d;
    /*
    display: flex;
    justify-content: center;
    align-items: center;
    */
}

#customerOrder
{
    text-align: center;
}

#orderDisplay 
{
    background-color: whitesmoke;
    padding: 1vh;
    text-align: center;
    /*
    display: flex;
    justify-content: center;
    */
}

#orderDisplay div 
{
    border-top: rgb(249, 97, 97) dashed;
    height: 15vh;
}

#orderScreen 
{
    display: none;
    background-color: #dcffeb;
}

#cookScreen 
{
    display: none;
    background-color: #f9ede5;
}

#brothScreen 
{
    display: none;
    background-color: #ded5ff;
}

#toppingScreen 
{
    display: none;
    background-image: url("../images/testBackground.png");
    background-size: contain
}

#customerOrder 
{
    display: none;
    margin: 2vh;
}

#toppingScreen button 
{
    border:none;
    background:none;
}

#brothScreen button
{
    border:none;
    background:none;
}

#score
{
    text-align: center;
    display: none;
    color:rgb(192, 140, 29)
}

#title 
{
    text-align: center;
}

#bowl 
{
    width: 83vw;
}

.options 
{
    height: 25vh;
}

#characters 
{
    text-align: center;
}

#characters img
{
    width: 24vw;
}

#orderButtons 
{
    text-align: center;
}

#cookScreen button {
    background: #c17e54;
}

#cookScreen .button:hover
{
    background: #98613e;
}

.canvasScreen {
    width: 80vw;
    height: 80vh;
}

#canvasOrderScreen {
    display: none;
}

#canvasCookScreen {
    display: none;
}

#canvasBrothScreen {
    display: none;
}

#canvasToppingScreen {
    display: none;
}
