* {
    margin: 0;
    padding: 0;
}

.points, .reset, .back
{
  padding: 0.2vw;
  border-radius: 0.2em;
  color: white;
  background-color: black;
  text-align: center;
  font-family: "Gill Sans", sans-serif;
  display: inline;
  font-size: 1.5vw;
}

.back a{
    color: inherit;
    text-decoration: inherit;
}


.banner {
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-right: 2rem;
    font-family: sans-serif;
    position: fixed;
    left: 0px;
    /* right: 0px; */
}

.banner h3 {
    padding-right: 1rem;
}

.banner button {
    height: 2vw;
    width: 7vw;
    font-weight: bold;
    font-size: 1.5vw;
    border: 0;
    background-color: white;
    border-radius: .25vw;
    border: 0.2vw solid black;
}

.banner button:hover {
    background-color: #6C7C17;
    border: none;
    color: white;
    /* background-color: rgb(144, 222, 26); */
}

.banner button:active {
    background-color: #6C7C17;
    /* background-color: rgb(110, 168, 23); */
}

.login-popup {
    font-family: sans-serif;
    width: 30%;
    height: 10rem;
    background-color: white;
    float: right;
    padding: 1rem;
    display: none;
    margin-top: 3%;
}

#incrementBtn, #decrementBtn {
    height: 3rem;
    width: 3rem;
    border-radius: 999px;
    border: 4px solid black;
    background-color: white;
    font-weight: bolder;
    font-size: larger;
    text-align: center;
    margin: 2rem;
}


.login_status{
    display: flex;
    gap: 1rem;
}

#hints{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);        
    width: 40%;
    background-color: #6C7C17;
    padding: 1%;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1%;
}

#hint_wrapper{
    display: flex;
    justify-content: center;
}

#hint_image_wrapper{
    flex-basis: 50%;
}


#hint_text{
    font-size: 2vw;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-align: center;
    align-self: center;
    flex-grow: 2;
}

#hint_image{
    width: 100%;
}

#next_button, #back_button{
    background-color: #FFC940;
    font-size: 2vw;
    align-self: center;
    padding: 0.5vw;
    border-radius: 0.2rem;
}

#navigation_wrapper{
    display: flex;
    gap: 1vw;
    justify-content: center;
}

#close_button{
    align-self: flex-end;
    width: 1rem;
    height: 1rem;
    text-align: center;
    border-radius: 50%;
    padding: 1rem;
}

#close_button:hover{
    background-color: white;
    color: black;
}

