/* styles.css */

body {
    font-family: Arial, sans-serif;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}


#video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain video aspect ratio */
    z-index: -1; /* Place the video behind other elements */
}

#left-column {
    width: 100%;
}

#left-column img {
    max-width: 50%;
    height: auto;
    display: block; /* Remove any default inline styles applied to the image */
    border: 1px solid #ccc; /* Optional: Add a border for styling */
}

#right-column {
    width: 50%;

}

#right-column img {
    max-width: 50%;
    height: auto;
    display: block; /* Remove any default inline styles applied to the image */
    border: 1px solid #ccc; /* Optional: Add a border for styling */
}
#bingo-container {
    text-align: center;
}

#bingo-heading {
    margin-top: 20px;
    padding: 15px 25px;
    background-color: rgb(6, 151, 71);
    color: white;
    font-size: 24px;
    border: none;
    border-radius: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

#bingo-card {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.bingo-square {
    width: 95px;
    height: 95px;
    border: 1.5px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3); /* Adjust the values as needed */
}


.free-space {
    background-color: purple;
    color: white;
}

#randomize-button {
    margin-top: 20px;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
}

.crowned::before {
    content: '\1F451'; /* Crown emoji character */
    font-size: 75px;
    color: purple;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



#randomize-button {
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 18px;
    cursor: pointer;
    background-color: rgb(6, 151, 71);
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#randomize-button:hover {
    background-color: #105d27; /* Darker purple on hover */
}
