@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

*{
    margin: 0px;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    box-sizing: border-box;
     font-family: 'Permanent Marker';
}

body,html{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, #eea2a2 0%, #bbc1bf 19%, #57c6e1 42%, #b49fda 79%, #7ac5d8 100%);
    width: 100%;
    height: 100%;
}

.board{
    width: 500px;
    height: 500px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.cell {
    width: 160px;
    height: 160px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 40px;
    color:rgba(0, 0, 0, 0.308);
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s, box-shadow 0.3s;
}

.cell:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 25px rgba(255, 255, 255, 0.2);
}