
.frosted-glass {

	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(10px);
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

body, html, #app {
	min-height: 100vh;

}

.grid-button {
	font-size: 18px;
	width: 50px;
	height: 50px;
	margin: 3px;
}

.state-container img {
	display: block;
	max-width: 80%;
	margin: 0 auto;
	max-height: 450px;
}

.state-container {
	text-align: center;
}

#app.lose {
	background: #000;
	color: white;
	padding: 4%;
}

#app.win {
	background: #555DA5;
	color: white;
	padding: 4%;
}

.image-container {
	position: relative; /* Establishes a positioning context for the child elements */
	display: inline-block; /* Make sure the container fits the image size */
}

.padding20 {
	padding: 12px 70px; /* Adjust these values as needed */
}

.new-highscore {
	font-weight: bolder;
}

.image-container img {
	display: block; /* Remove any extra space below the image */
	width: 100%; /* Ensure the image scales properly */
}

.new-highscore {
	position: absolute; /* Take it out of the normal document flow */
	bottom: 0; /* Position it at the bottom of the image */
	left: 0; /* Align to the left of the container */
	width: 100%; /* Full width of the image/container */
	background: gold;
	color: black;
	padding: 4%;
	text-align: center; /* Center text within the banner */
}

.lives-container {
	position: fixed;
	top: 10px;
	left: 10px;
	font-size: 24px;
}

.heart {
	margin-right: 5px;
}


.card {
        position: fixed;
        top: 10px;
        right: 10px;
        border: 1px solid #ccc;
        border-radius: 8px;
        padding: 10px;
        background: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .card img {
        max-width: 200px;
        max-height: 150px;
        display: block;
        margin-bottom: 10px;
    }

    .card button {
        display: block;
        width: 100%;
        padding: 8px;
        border: none;
        background-color: #007bff;
        color: white;
        border-radius: 4px;
        cursor: pointer;
    }

    .card button:hover {
        background-color: #0056b3;
    }