*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    text-align: center;
    /* background-color: aquamarine; */
}
.container{
    height: 70vh;
    /* border: 2px solid black; */
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /* gap: 1vmin; */
}
.game{
   height: 60vh;
   width: 59vh;
   border: 2px solid;
   background-color: black;
   border-radius: 20px;
}
.btn{
    width: 19vmin;
    height: 19vmin;
    margin: 4px 0px;
    font-size: 8vmin;         
    font-weight: bold;
    vertical-align: middle;
    text-align: center;
    line-height: 19vmin;      
    box-sizing: border-box;   
    cursor: pointer;
    outline: none;
}
#win , #lose{
    font-size: 50px;
    font-weight: 900;
    margin: 10px;
    /* margin-right: 300px; */
     margin-top: 0px;
     font-family: Arial, Helvetica, sans-serif;
     
}
.head{
    font-size: 50px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 20px;
}
.con{
    /* height: 60vh; */
   width: 90vh;
    display: flex;
    justify-content: space-around;
    margin: auto;
}
.btn1{
    margin-top: 40px;
    padding: 20px 40px;
    background-color: rgb(95, 95, 95);
    border-radius: 10px;
    color: white;
    font-size: 20px;
    border-style: none;
    font-weight: bold;
    cursor: pointer;
}
#draw{
    font-size: 40px;
    /* font-size: 50px; */
    font-weight: 900;
    margin: 20px;
    color: red;
    margin-top: 40px;
    font-family: Arial, Helvetica, sans-serif;
}