@CHARSET "ISO-8859-1";

body {
    display: grid;
    place-items: center; 
}

h2 {
	margin-top: 0px;
	margin-bottom: 10px;
	width: 100%;
	text-align: center;
}

img{
	margin-left: 5px;
}

.main_div{
	width: 100%;
	max-width: 400px;
}

.instructions{
	width: 100%;
	max-width: 400px;
}

.detailed{
	width: 100%;
	max-width: 400px;
    text-align: left; 
}

.main_container {
    place-items: center; 
}

.swordle_container {
	max-height: 100vh;
	max-height: 100dvh;
	min-height: 150px;
	aspect-ratio: 1;
  background-image: 
    linear-gradient(to right, #eeeeee 50%, #ffffff 50%),
    linear-gradient(to right, #ffffff 50%, #eeeeee 50%);
  background-size: 100% 50%;
  background-position: top, bottom;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
	.swordle_container {
		max-height: calc((var(--stable-vh, 1vh)) - 40px);
	}
}

.button_container {
	width: 80%;
}

.button {
	width: 29.3%;
	margin-left: 1.9%;
	margin-right: 1.9%;
	margin-top: 10px;
	margin-bottom: 5px;
	border-radius: 10px;
	font-size: 20px;
}

.cell_wrapper {
	position: relative;
}

.cell {
	box-sizing: border-box;
	height: 88%; 
	margin: 1.5%; 
	padding: 0px;
	text-align: center;
	font-size: clamp(30px, calc(var(--stable-vh, 1vh)*0.15), 60px);
	font-weight: bold;
	text-transform: uppercase;
	border-width: 1px;
}

.cell_row {
	width: 100%;
}

.cell_enable {
} 

.cell_correct {
	color: green;
}
.cell_provided {
	color: blue;
	background-color: white;
}

p{
	text-align: left;
}

.copyright{
	font-size: 10px;
}