*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: #232323;
}
h1 {
    display: flex;
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    background-color: #232323;
    height: 100px;
    font-size: 50px;
    color: white;
}

.container{
    background: #232323;
    margin : 0 auto;
    display : grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    justify-content: space-around;
    /* min-width: 600px; */

}
.row{
    display : flex;
    /* justify-content: space-around; */
    align-items: center;
    grid-column: 1/4;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
}
.col{
    width:100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 ;
}
.result{
    text-align: center;
    font-size: 50px;
    font-weight: 800;

}
.box:hover{
    cursor: pointer;
}
.reset{
    background-color: #232323 ;
}
#reset-btn{
    font-size: 50px;
    text-align: center;
    margin : 0 25%;
    background-color: #232323;
    color : White;
}

