body {
    margin: 0;
    padding: 0px;
}

.page {
    display: flex;
    flex-direction: column;
    align-items: center;
    page-break-after: always;
    background-image: url("/images/2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Optional: Ensures the image covers the entire element */
}


.bingo-card {
    border: 1.5px solid #000;
    margin: 10px 0;
    width: 200px;
    height: 200px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    background-color: rgb(255, 255, 255);
}

.bingo-card div {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1.5px solid #000;
    font-size: 20px;
}

.bingo-card .free {
    background-color: #ffffff;
}

h1 {
    margin-bottom: 20px;
    background-color: white;
}
