:root {
	--main-color-red: #ff4d4d;
	--main-color-red-rgb: 255, 77, 77;
	--main-color-green: #6ca964;
	--main-color-green-rgb: 108, 169, 100;
	--secondary-color: #ffd24d;
	--secondary-color-rgb: 255, 210, 77;
	--hint-color: #4e8746;
}

:root {
  font-size: clamp(1rem, calc(1rem + ((1vw - 0.48rem) * 0.5556)), 1.2rem);
  min-height: 0vw;
}

body, html {
	height:100vh;
}

html * {
	font-family: 'Lexend Deca', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-weight: normal;
}

body {
	padding: 2rem 0rem ! important;
	background-color: #f3f3f3 ! important;
}

body * {
	transition: background-color 0.1s ease;
	transition: color 0.1s ease;
}

h1 {
	font-size: 1rem;
	margin-bottom: 0 ! important;
}

h1, h2 {
	font-weight: bold;
}

strong {
	font-weight: bold;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

.whattltitle {
	color: var(--main-color-green);
	font-size: 5rem;
}

.whattllogo {
	max-width: 200px;
	width: 100%;
	margin-bottom: auto;
	display: inline-block;
	text-align: left;
}

.headrow {
	margin-bottom: 1rem;
}

.headrow > div {
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 100%;
}

.headrow .logobox {
	justify-content: left;
}

.headrow .navbox {
	justify-content: right;
}

.whattlnumber {
	background: black;
	color: white;
	padding: 5px 7px;
	display: inline-block;
	line-height: 1;
	margin-right: 0.5rem;
}

.mainnav {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* https://icon-sets.iconify.design/ic/baseline-share/*/

.mainnav li {
	display: inline-block;
	margin-left: 1rem;
}

.mainnav li a {
	color: var(--main-color-green);
	text-decoration: none;
	font-size: 2rem;
}

.whattlform {
	margin-bottom: 1rem;
}

.whattlguessbox {
	padding: 1rem;
	font-size: 2rem;
	display: block;
	margin-bottom: 1rem;
	box-shadow: inset 0px 0px 5px #aaa;
	border: 1px solid rgba(0, 0, 0, 0.41);
	width: 100%;
	border-radius: 2px;
}

.whattlguessbox::placeholder {
	opacity: 0.13;
	color: #000;
}

.whattlguessbox:focus {
	outline: none ! important;
	border: 2px solid var(--main-color-green);
}

.whattleror {
	background: var(--main-color-green);
	color: white;
	padding: 5px 11px;
	display: none;

}

.whattlguessbutton {
	background: var(--main-color-green);
	display: block;
	font-size: 2rem;
	padding: 1rem 1.5rem;
	color: rgba(0, 0, 0, 0.9);
	border: 0;
	border-right: 5px solid var(--hint-color);
	border-bottom: 5px solid var(--hint-color);
	width: 100%;
}

.whattlguesslist li {
	font-size: 2rem;
}

.whattlguesslist li .strike1 {
	color: var(--main-color-green);
	text-decoration: line-through;
	text-decoration: line-through wavy rgba(var(--main-color-green-rgb), 0.8);
}

.strike2 {
	color: black;
}

.veryclose {
	color: #aaa;
}

.whatisthis {
	font-size: 2rem;
}

.cp {
	cursor: pointer;
}

.attemptsleft {
	background-color: black;
	color: white;
	font-size: 1.5rem;
	padding: 0.7rem 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 100%;
}

.whattlimage-outer {
	position: relative;
}

.whattlimage {
	width: 100%;
	max-width: 100%;
	height: auto;
	background-image: url(../images/image-loading.png);
	background-color: var(--main-color-green);
	background-size: cover;
	background-repeat: no-repeat;
	border: 1px solid rgba(0, 0, 0, 0.31);
	box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
	margin-bottom: 1rem;
	position: relative;
}

.tempoimage {
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 100%;
}

.tempoimagenomore {
	position: relative;
}

.lowerthetempo {
	margin-top: 19px;
}

.fulli {
	width: 100%;
	height: auto;
}

.modal {
	display: none;
	background-color: rgba(255, 255, 255, 0.41);
	background-color: rgba(0, 0, 0, 0.41);
	/*background-color: rgba(var(--main-color-green-rgb), 0.8);*/
	width: 100vw;
	height: 100vh;
	z-index: 517;
	position: fixed;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	backdrop-filter: blur(7px);
}

.modal-inner {
	display: none;
	margin: 0;
	background-color: white;
	width: 89%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2rem;
	text-align: center;
	border-radius: 3px;
	b

}

.modal-close {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0px 9px;
	text-align: right;
	cursor: pointer;
	background-color: var(--main-color-green);
	color: white;
	z-index: 1000001;
	font-size: 2rem ! important;

}

.modal h2 {
	font-size: 2rem;
	margin-bottom: 2rem;
}

.win {

}

.tomorrow {
	display: none;
	font-size: 2rem;
	background: var(--secondary-color);
	color: black;
	padding: 1rem 1.5rem;
}

.guesstries {
	font-weight: bold;
}

.sharewinlist {
	margin: 0;
	padding: 0;
}

.sharewinlist li {
	display: inline-block;
	list-style: none;
	margin: 0 11px;
}

.sharewinlist li a {
	display: inline-block;
	color: white;
	background-color: var(--main-color-green);
	text-decoration: none;
	padding: 5px 11px;
	font-size: 1.23rem;
	margin-bottom: 1rem;
}

.alertbox {
	text-align: center;
	font-weight: normal;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	padding: 1rem 1.5rem;
	background: var(--main-color-red);
	font-size: 1.5rem;
	color: white;
	display: none;
}

.alertynextimage {

}

.alertynextimageuppercase {
	text-transform: capitalize;
}

.rosette, .sad-face {
	width: 100%;
	height: auto;
	max-width: 100px;
	margin-top: 1rem;
}

.whattheobjectis {
	font-weight: bold;
}



@media (min-width:980px) {
	.mainnav li a:hover {
		color: black;
	}
	.whattlguessbutton:hover {
		color: #fff;
		background-color: var(--main-color-red);
		border-right: 5px solid var(--main-color-red);
		border-bottom: 5px solid var(--main-color-red);
	}
	.modal-close:hover {
		color: black;
	}
	.sharewinlist li a:hover {
		background-color: var(--hint-color);
	}
}

@media (min-width:768px) {
	.whattldate {
		display: inline-block;
	}
	.whattldatesmall {
		display: none;
	}
}

@media (max-width:767px) {
	body {
		padding: 1rem 0rem ! important;
	}
	h1 {
		margin-bottom: 0.5rem ! important;
	}
	.whattllogo {
		max-width: 121px;
		display: inline-block;
		margin-right: 1rem;
	}
	.whattldate {
		display: none;
	}
	.whattldatesmall {
		display: inline-block;
	}
	.mainnav li {
		margin: 0;
	}
	.mainnav li a {
		font-size: 1.5rem;
	}
	.magiccolumn {
		padding-left: 1rem ! important;
	}
	.modal-inner {
		position: relative;
		transform: none;
		top: initial;
		left: initial;
		margin: 2rem;
	}
	.modal-inner .row > div {
		padding: 1rem 0;

	}
	.modal-inner .imageinhere {
		margin-top: 1rem;
	}
	.whattlguessbox {
		padding: 0.53rem 0.83rem;
		font-size: 1.5rem;
	}
	.whattlguessbutton {
		padding: 0.7rem;
		font-size: 1.5rem;
	}
	.attemptsleft {
		font-size: 1rem;
		padding: 0.7rem 1rem;
	}
	.alertbox {
		font-size: 1rem;
	}
}
