* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: "Playwrite GB S", cursive;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.group-top {

	display: grid;
    grid-template-columns: 1fr 1fr;}

html{
	height: 100%;
	background-color: #fcb040;
}
#container{
	width: 100%;
    position: relative;
    background-color: #961a1a;
    padding-bottom: 50px;
}

#container:after {

	background: #961a1a url(bottom-numeritos.jpg) repeat-x;
	height: 55px;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	content: "";
	z-index: 1;
}

#score {
    background-color: #fcb040;
    color: #000000;
    padding: 11px;
}

img {

	max-width: 100%;
	vertical-align: top;
}

p {

	padding: 0;
	margin: 0;
}

.number {

	font-size: 40px;
}


#wrong, #correct {

	position: absolute;
    right: -40px;
    padding: 24px 15px 25px 20px;
    top: -30px;
    background: url(ballon-2.svg);
    background-size: 100%;
    height: 79px;
    display: none;
    font-weight: bold;
    z-index: 2;
}

#wrong {

	color: red;
}

#correct {

	color: green;
	padding: 29px 15px 25px 20px;
	height: 95px;
}

#question img {

	width: 120px;
}

#question{
    width: 100%;
    text-align: center;
    color: black;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 19px;
    height: 165px;
    background-color: #fff;
}

#question .number {

    height: 100%;
    background: #fff url(ballon.svg) no-repeat center center;
    background-size: 100%;
    display: flex;
    align-items: center;
    background-size: contain;
    justify-content: center;
    width: 130px;
}
#instruction {
	width: 100%;
	height: 50px;
	background-color: #b481d9;
	margin: 10px auto;
	text-align: center;
	line-height: 45px;
	box-shadow: 0px 4px #815386;
	-moz-box-shadow: 0px 4px #815386;
	-webkit-box-shadow: 0px 4px #815386;
}
#choices {
	width: 100%;
	display: grid;
	gap: 10px;
	margin-bottom: 10px;
	grid-template-columns: 85px 85px;
	justify-content: center;
	align-items: center;
}
.box {
	width: 85px;
	height: 85px;
	float: left;
	cursor: pointer;
	text-align: center;
	position: relative;
	transition: all 0.2s;
	background: url("embalagem-do-numeritos-v2.svg");
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.box:hover, #startreset:hoover{
	background-color: #9C89f6;
	color: white;
	box-shadow: 0px 4px #6b54d3;
	-webkit-box-shadow: 0px 4px #6b54d3;
	-moz-box-shadow: 0px 4px #6b54d3;
}
.box:active, #startreset:active{
	box-shadow: 0px 0px #6b54d3;
	-moz-box-shadow: 0px 0px #6b54d3;
	-webkit-box-shadow: 0px 0px #6b54d3;
	top: 4px;
}

.box span {

	color: #000;
    font-weight: bold;
    padding-top: 13px;
    font-size: 20px;
}

#question:after {

	content: "";
    left: 0;
    bottom: 0;
    width: 100%;
    height: 19px;
    background: url(border.png);
    position: absolute;
    background-size: 100%;
}

#question .image {

	display: flex;
	justify-content: end;
	position: relative;
}

.first-message {

	font-size: 14px;
	font-weight: bold;
	padding-left: 10px;
	padding-right: 10px;
	width: 100px;
	line-height: 17px;
}


#startreset {
    width: 75%;

    margin: 0 auto;
    cursor: pointer;
    -moz-box-shadow: 0px 4px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    color: #fff;
    font-weight: bold;
    z-index: 2;
    border: 1px solid #fff;
    padding: 5px 15px;
    display: block;
}

#timeremaining {
    color: #fcb040;
    width: 100%;
    padding: 10px;
    background-color: #961a1a;
}

.top-numbers {

	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: bold;
}

#gameOver {
	height: 100dvh;
    width: 100%;
    color: white;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: none;
    background: url(bg-numeritos.jpg);
    background-size: contain;
}

.game-end {

	height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.game-end .group-message {

	background-color: #000000e3;
    padding: 20px;
}

.game-end h4 {

	color: #FF9800;
    font-size: 35px;
}

.game-end p {

	color: yellow;
	font-size: 16px;
}

.game-end button {

	background-color: #fff;
    padding: 10px;
    display: inline-block;
    border: none;
    border-radius: 0;
    margin-top: 10px;
}