@keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }
  @-webkit-keyframes blink-animation {
    to {
      visibility: hidden;
    }
  }

body {
    background-color: bisque;
    font-family: 'Press Start 2p';
    padding: 2rem 1rem;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.answer-feedback {
    font-size: 7pt;
    color: gray;
    margin-top: 1rem;
}

.answer-msg {
    color: rgb(255, 68, 68);
    font-size: 7pt;
}

.answer-input {
    all: unset;
    padding: 0.2rem;
    width: 1rem;
    border: 1px solid gray;
}

.brick {
    width: 100vw;
    height: 8rem;
    margin-top: -1rem;
}

.buttons-wrapper {
    display: flex;
    justify-content: center;
    gap: 7rem;
    margin-top: 3rem;
}

.divider {
    border-bottom: 2px solid rgb(192, 106, 1);
    position: relative;
}

.divider::before {
    content: "+";
    position: absolute;
    left: 0;
    top: -2.2rem;
}

.game {
    display: flex;
    flex-direction: column;
    width: 75vw;
    margin-top: 4rem;
    gap: 1rem;
    color:rgb(192, 106, 1)
}

.home,
.main-game {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.3rem;
}

.letter {
    margin: 0;
    margin-bottom: 0.3rem;
}

.letters {
    display: flex;
    gap: 0.2rem;
    border: 1px solid gray;
    padding: 0.2rem;
}

.retry-n-next-btn {
    all: unset;
    color: rgb(255, 148, 17);
    font-size: 10pt;
}

.retry-n-next-btn > span {
    display: flex;
    justify-content: center;
    font-size: 23pt;
    padding-bottom: 0.2rem;
    cursor: pointer;
}


.start-btn{
    font-size: 8pt;
    font-family: 'Press Start 2p';
	display: inline-block;
    margin-top: 4rem;
    font-weight: bold;
    padding: 10px 15px;
    background-color: rgb(252, 207, 152);
    text-shadow: -1px -1px black, 1px 1px white;
    color: rgb(255, 148, 17);
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
    box-shadow: 0 .2em rgb(255, 157, 37); 
    cursor: pointer;

}

.start-btn:active {
	box-shadow: none;
	position: relative;
	top: .2em;
}

.submit-btn{
    font-size: 7pt;
    width: 7.5rem;
    font-family: 'Press Start 2p';
	display: inline-block;
    font-weight: bold;
    padding: 10px 15px;
    background-color: rgb(252, 207, 152);
    text-shadow: -1px -1px black, 1px 1px white;
    color: rgb(255, 148, 17);
    -webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	border-radius: 7px;
    box-shadow: 0 .2em rgb(255, 157, 37); 
    cursor: pointer;

}

.submit-btn:active {
	box-shadow: none;
	position: relative;
	top: .2em;
}

.submit-btn:disabled {
    background-color: lightgray;
    text-shadow: -1px -1px black, 1px 1px white;
    color: gray;
    box-shadow: 0 .2em gray; 
    cursor: not-allowed;
}

.title {
    color: rgb(255, 157, 37);
    font-weight: bold;
    text-align: center;
    font-size: 18pt;
}

.top,
.bottom,
.divider,
.answer {
    display: flex;
    width: 100%;
    gap: 1rem;
    justify-content: end;
    font-size: 15pt;
}

.user-answer {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 2rem;
}