*, *::after, *::before {
    box-sizing: border-box;
}
body{
	background-color: aqua;
}

.grid {
	height: 400px;
	width: 500px;
	padding: 4px;
	background-color: #1177aa;
	box-shadow: 12px 12px 13px rgba(12,12,12,0.6);
	border-radius: 10px;
    display: grid;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
	grid-template-columns: repeat(5, auto);
	margin-top: 15pt;
	margin-bottom: 10px;
}

.grid img {
	border-radius: 10px;
	cursor: pointer;
}


.gamebody {
	position: fixed;
    top: 50%;
    left: 50%;
	transform: translate(-50%, -50%);
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-weight: 500;
}
.gamebody h2{
	position: fixed;
	left: 50%;
}
.gamebody h3{
	padding: 0;
	margin: 0;
}

.btn {
	margin-top: 5px;
	font-size: 20px;
	background: none;
	font-family: 'montserrat';
	border-radius: 10px;
	transition: .6s;
	box-shadow: 12px 12px 13px rgba(12,12,12,0.6);
	background-color: #1177aa;
	overflow: hidden;
}

button:hover {
	background-color: black;
	cursor: pointer;
	color: ghostwhite;
}

.win-msg {
    display: none; /*so this item doesnt show up by default*/
    position: fixed;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .7);/*last parameter(.9) means 90% transparent*/
	justify-content: center;
	align-items: center;
	text-align: center;
    color: white;
    font-size: 2rem;
    flex-direction: column;
}


.win-msg button {
    font-size: 1rem;
    background-color: red;
    cursor: pointer;
    border: 1px solid;
    padding: .25rem .5rem;
	margin-top: 5px;
	font-family: 'montserrat';
	border-radius: 10px;
	transition: .6s;
	overflow: hidden;
}

.win-msg button:hover {
	background-color: black;
	color: rgba(167, 11, 45, 0.918);
	font-size: 1.7rem;
}

.win-msg.show {
    display: flex;
}

.start-prompt {
	display: none; /*so this item doesnt show up by default*/
    position: fixed;
    top: 0%;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);/*last parameter(.9) means 90% transparent*/
	justify-content: center;
	align-items: center;
	text-align: center;
    color: white;
    font-size: 2.5rem;
    flex-direction: column;
}

.start-prompt button {
	background-color: black;
	cursor: pointer;
	color: ghostwhite;
	font-size: 25px;

}

.start-prompt.visible {
	display: flex;
}

.unclickable{
	cursor: not-allowed;
}

