* {
	font-family: monospace;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	outline: none;
	border: none;
	transition: all 0.2s linear;
}

.container {
	background-color: #eee;
	padding: 5rem 9%;
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 100vh;
}

h1 {
	color: #222;
	font-size: 3rem;
	margin-bottom: 1rem;
}

#sub{
	font-size: 1.2rem;
	margin-bottom: 2rem;
	text-align: center;
}

.timer {
	background-color: #222;
	color: #fff;
	font-weight: bold;
	padding: 1rem 1.5rem;
	font-size: 1.5rem;
}

.colors-container {
	margin-top: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 2rem;
}

.colors-container .color-box h2 {
	color: #fff;
	padding: 5rem 5rem;
	font-weight: 800;
	font-size: 2.5rem;
	min-height: 168px;
	cursor: pointer;
}

.colors-container .color-box {
	background-color: #ffffff;
	padding: 1rem;
	border-radius: 1rem;
	box-shadow: rgb(100, 100, 111, 0.2) 0px 7px 29px 0px;
	min-width: 280px;
}

.colors-container .color-box h2:focus, .colors-container .color-box h2:active  {
    outline: none !important;
	-webkit-tap-highlight-color: transparent;
	box-shadow: none !important;
}


.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; /* Adjust width as needed */
    max-width: 400px; /* Adjust maximum width as needed */
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 0px 10000px rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none; /* Initially hide the popup */
}

.popup-content {
    background-color: white;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.your-score{
	color: #222;
	font-size: 3rem;
	margin-bottom: 1rem;
}

#new-game-btn {
    background-color: #222;
	color: #fff;
	font-weight: bold;
	padding: 1rem 1.5rem;
	margin-top: 2rem;
	font-size: 1.5rem;
    cursor: pointer;
}
