﻿/* styles.css */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.background-image {
    width: 100%;
    height: 100%;
    background-image: url("https://i.imgur.com/nQmQHVt.png"); /* Default background */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover; /* Use cover to ensure full coverage */
    cursor: pointer; /* Add pointer cursor to indicate clickability */
    display: none; /* Hide by default */
}

.show {
    display: block; /* Show when the class is added */
}
