/* Reset margins and paddings */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Background styling */
.backgr {
    background-image: linear-gradient(to bottom, rgb(11, 0, 128), rgb(183, 0, 255));
    height: 115vh;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    filter: blur(5px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Header styling */
.header {
    text-align: center;
    margin-top: 20px;
    z-index: 2;
}

.header h1 {
    display: inline;
    margin: 0 5px;
}

/* Text styles */
#greentxt {
    color: #89FF01;
    font-size: 50px;
}

#lighttxt {
    color: white;
    font-size: 40px;
}

/* Game body and button styles */
.gamebody {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 110px;
    text-align: center;
}

.row {
    display: flex;
}

.cell {
    color:red;
    height: 100px;
    width: 100px;
    border: 2px solid black;
    background-color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin: 5px;
    border-radius: 1rem;
    font-size: 100px;
    transition: transform 0.2s, background-color 0.2s;
    background-color: black;
}
.cell:hover {
    background-color: #f0f0f0;
    transform: scale(1.05);
}
button{
display: flex;
justify-content: center;
align-items: center;
color:cyan;
}
.cell:active {
    background-color: #ddd;
}
#reset{
    margin-left:620px;
    margin-top:60px;
    height:40px;
    width:80px;
    background-color: orangered;
    color:black;
    border-radius: 10px;
}
#reset:hover{
    background-color:#4B164C ;
    color:white;
}
.message{
    height:40px;
    color:black;
    background-color:cyan;
    margin-top:30px;
    margin-left:420px;
    margin-right:420px;
    text-align: center;
    padding-top:5px;
    padding-bottom:10px;
    border-radius: 10px;
}
