@font-face {
    font-family: "JetBrains Mono";
    src: url("../resource/JetBrainsMono-Bold.ttf");

}
body{
    background: url("../resource/bg.png");
    width: 100%;
    height: 100%;

}

main{
    width: 970px;
    height: 600px;
    margin: 30px auto;
}

.div1{
    width: 320px;
    height: 100%;
    background-color: ghostwhite;
    border: 20px solid #50d250;
    float: left;
}

.div2{
    width: 550px;
    height: 100%;
    background-color: ghostwhite;
    border: 20px solid #50d250;
    float: right;
}

.score{
    color: coral;
    font-family: "JetBrains Mono", serif;
    font-size: 18px;
}

#gameWindow{
    width: 480px;
    height: 480px;
    margin: auto;
}

#aiWindow{
    height: 160px;
    margin-left: 100px;
    margin-top: 10px;
}

.sideBar{
    height: 38px;
    border-bottom: 3px solid grey;
}

.sideBar:hover{
    background-color: #b2bec3;
    height: 50px;
    border-bottom: 5px solid grey;
}

button {
    height: 40px;
    width: 90px;
    margin-top: 5px;
    margin-left: 230px;
    transition-duration: 0.4s;
    background-color: white;
    color: black;
    border: 2px solid #74b9ff;
    border-radius:5px;
}

button:hover {
    background-color: #74b9ff;
    color: white;
}

#defaultCanvas0{
    width: 250px;
    height: 120px;
    margin-left: -65px;
}

#defaultCanvas1{
    margin-top: 10px;
}


