

h1 {
    font-size: 32px;
        font-family: 'Times New Roman, sans-serif';

}
.table-container {
    display: grid;
    grid-template-columns: repeat(3, 130px); 
    gap: 20px;                               
    justify-content: center;                
}

.cell {
    
    border: 2px solid #ccc;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    border-radius: 15px;    
    border-color: black;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.547); 
}


.cell:hover {
    transform: scale(1.05);
}
